From 5ee50faff832c54385e27703ae0bf93b8e7c9e92 Mon Sep 17 00:00:00 2001 From: Robin Date: Thu, 29 May 2025 04:53:07 -0400 Subject: [PATCH] Run the 'Prevent blocked' check whenever a PR branch is updated (#4155) Because we're now requiring the 'Prevent blocked' check to pass before merging a PR, GitHub Actions apparently expects it to be associated with the latest Git ref of the PR's branch whenever the branch is updated. Therefore we need to re-run the workflow on the 'synchronize' event. --- .github/workflows/blocked.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/blocked.yml b/.github/workflows/blocked.yml index 2213b0c35..b3bc3c514 100644 --- a/.github/workflows/blocked.yml +++ b/.github/workflows/blocked.yml @@ -1,7 +1,7 @@ name: Prevent blocked on: pull_request_target: - types: [opened, labeled, unlabeled] + types: [opened, labeled, unlabeled, synchronize] jobs: prevent-blocked: name: Prevent blocked