Allow owners/members/collab to trigger galata update on other's PR (#7572)

Michał Krassowski 1 year ago committed by GitHub
parent 8b3b5b3ce7
commit 3e125b1197
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -13,7 +13,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 playwright snapshots') ||
contains(github.event.comment.body, 'please update galata snapshots') ||

Loading…
Cancel
Save