From 3e125b11974720d1e4687e3e9aaf1c544a5d561a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Thu, 30 Jan 2025 08:24:28 +0000 Subject: [PATCH] Allow owners/members/collab to trigger galata update on other's PR (#7572) --- .github/workflows/playwright-update.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright-update.yml b/.github/workflows/playwright-update.yml index d8160a7703..197fe581b6 100644 --- a/.github/workflows/playwright-update.yml +++ b/.github/workflows/playwright-update.yml @@ -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') ||