Skip to content

Commit

Permalink
[CI] Fix: Run auto-assign check if user is a prev contributor (#5873)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregfromstl authored Jan 2, 2025
1 parent a9547c5 commit 128bb44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/auto-assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ jobs:
if: |
github.event.pull_request.author_association == 'MEMBER' ||
github.event.pull_request.author_association == 'OWNER' ||
github.event.pull_request.author_association == 'COLLABORATOR'
github.event.pull_request.author_association == 'COLLABORATOR' ||
github.event.pull_request.author_association == 'CONTRIBUTOR'
steps:
- uses: toshimaru/auto-author-assign@v2.1.1

0 comments on commit 128bb44

Please sign in to comment.