Skip to content

Commit 3e125b1

Browse files
authored
Allow owners/members/collab to trigger galata update on other's PR (#7572)
1 parent 8b3b5b3 commit 3e125b1

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/playwright-update.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ jobs:
1313
(
1414
github.event.issue.author_association == 'OWNER' ||
1515
github.event.issue.author_association == 'COLLABORATOR' ||
16-
github.event.issue.author_association == 'MEMBER'
16+
github.event.issue.author_association == 'MEMBER' ||
17+
github.event.comment.author_association == 'OWNER' ||
18+
github.event.comment.author_association == 'COLLABORATOR' ||
19+
github.event.comment.author_association == 'MEMBER'
1720
) && github.event.issue.pull_request && (
1821
contains(github.event.comment.body, 'please update playwright snapshots') ||
1922
contains(github.event.comment.body, 'please update galata snapshots') ||

0 commit comments

Comments
 (0)