Skip to content

Commit

Permalink
Allow owners/members/collaborators to update snapshots on PRs of outs…
Browse files Browse the repository at this point in the history
…ide contributors (#96)
  • Loading branch information
krassowski authored Dec 18, 2024
1 parent 8e943a2 commit 88ce72c
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ jobs:
(
github.event.issue.author_association == 'OWNER' ||
github.event.issue.author_association == 'COLLABORATOR' ||
github.event.issue.author_association == 'MEMBER'
github.event.issue.author_association == 'MEMBER' ||
github.event.comment.author_association == 'OWNER' ||
github.event.comment.author_association == 'COLLABORATOR' ||
github.event.comment.author_association == 'MEMBER'
) && github.event.issue.pull_request && contains(github.event.comment.body, 'please update snapshots')
runs-on: ubuntu-latest

Expand Down

0 comments on commit 88ce72c

Please sign in to comment.