From f98ceaacc303121d7b4c537ab3277ecb7ef04763 Mon Sep 17 00:00:00 2001 From: Don Browne Date: Thu, 5 Dec 2024 11:21:43 +0000 Subject: [PATCH] Run PR check action on `synchronize` When reusing this action elsewhere, I noticed that its status would be cleared if additional commits were pushed to the PR branch. Triggering on the synchronize event ensures that it will be checked on subsequent commits. --- .github/workflows/pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 12091a2551..b750cf358e 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -4,7 +4,7 @@ name: Pull Request Validation on: pull_request: - types: [opened, edited, reopened] + types: [opened, edited, reopened, synchronize] jobs: check-pr-content: runs-on: ubuntu-latest