diff --git a/.github/workflows/issue-triage.yml b/.github/workflows/issue-triage.yml index 592c00f446..ecab04d7e5 100644 --- a/.github/workflows/issue-triage.yml +++ b/.github/workflows/issue-triage.yml @@ -149,16 +149,14 @@ jobs: --apply-labels - name: Stop after spam gate - if: ${{ steps.spam.outputs.decision != 'allow' }} + if: ${{ steps.spam.outputs.allow_triage != 'true' }} shell: bash - env: - SPAM_DECISION: ${{ steps.spam.outputs.decision }} run: | - echo "Stopping: spam gate decided: ${SPAM_DECISION}" + echo "Stopping: issue triage preflight did not allow automation." exit 1 - name: Reproduce reported issue - if: ${{ steps.spam.outputs.decision == 'allow' }} + if: ${{ steps.spam.outputs.allow_triage == 'true' }} id: repro working-directory: ${{ env.DEVFLOW_PATH }} env: