Chore: Change condition to run auto triager based on user association (#93466)

pull/93467/head
Esteban Beltran 8 months ago committed by GitHub
parent f21a5987a2
commit b48f288583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      .github/workflows/issue-opened.yml

@ -60,7 +60,7 @@ jobs:
auto-triage:
needs: [main]
if: github.repository == 'grafana/grafana' && (github.event.issue.author_association == 'NONE' || github.event.issue.author_association == 'FIRST_TIMER' || github.event.issue.author_association == 'FIRST_TIME_CONTRIBUTOR')
if: github.repository == 'grafana/grafana' && github.event.issue.author_association != 'MEMBER' && github.event.issue.author_association != 'OWNER'
runs-on: ubuntu-latest
steps:

Loading…
Cancel
Save