From 8f5bf33eacc0223e081ed6a250d0af2c44bee391 Mon Sep 17 00:00:00 2001 From: Jerop Kipruto Date: Tue, 6 Jan 2026 19:15:00 -0500 Subject: [PATCH] ci(github-actions): triage all new issues automatically (#16018) --- .github/workflows/gemini-automated-issue-triage.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/workflows/gemini-automated-issue-triage.yml b/.github/workflows/gemini-automated-issue-triage.yml index f4191ef7a7..864174ca1c 100644 --- a/.github/workflows/gemini-automated-issue-triage.yml +++ b/.github/workflows/gemini-automated-issue-triage.yml @@ -39,7 +39,6 @@ jobs: github.event_name == 'workflow_dispatch' || ( (github.event_name == 'issues' || github.event_name == 'issue_comment') && - contains(github.event.issue.labels.*.name, 'status/need-triage') && (github.event_name != 'issue_comment' || ( contains(github.event.comment.body, '@gemini-cli /triage') && (github.event.comment.author_association == 'OWNER' || github.event.comment.author_association == 'MEMBER' || github.event.comment.author_association == 'COLLABORATOR') @@ -75,11 +74,6 @@ jobs: ISSUE_NUMBER_INPUT: '${{ github.event.inputs.issue_number }}' LABELS: '${{ steps.get_issue_data.outputs.labels }}' run: | - if ! echo "${LABELS}" | grep -q 'status/need-triage'; then - echo "Issue #${ISSUE_NUMBER_INPUT} does not have the 'status/need-triage' label. Stopping workflow." - exit 1 - fi - if echo "${LABELS}" | grep -q 'area/'; then echo "Issue #${ISSUE_NUMBER_INPUT} already has 'area/' label. Stopping workflow." exit 1