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

This commit is contained in:
Esteban Beltran 2024-09-19 10:49:54 +02:00 committed by GitHub
parent f21a5987a2
commit b48f288583
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: