From 462560d5446eba65823bb512cbb09f6ebf5e9683 Mon Sep 17 00:00:00 2001 From: Esteban Beltran Date: Tue, 10 Sep 2024 16:29:58 +0200 Subject: [PATCH] Chore: Only auto-triage issues for authors non associated to the repository (#93174) Only triage issues for authors non associated to the repository --- .github/workflows/issue-opened.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/issue-opened.yml b/.github/workflows/issue-opened.yml index d07c5ad416c..dda53fc0b8d 100644 --- a/.github/workflows/issue-opened.yml +++ b/.github/workflows/issue-opened.yml @@ -44,7 +44,7 @@ jobs: fi auto-triage: needs: [main, config] - if: needs.config.outputs.has-secrets + if: needs.config.outputs.has-secrets && (github.event.issue.author_association == 'NONE' || github.event.issue.author_association == 'FIRST_TIMER' || github.event.issue.author_association == 'FIRST_TIME_CONTRIBUTOR') runs-on: ubuntu-latest steps: - name: "Generate token"