From 327b509467e7776352bc06657531cd2f395798e3 Mon Sep 17 00:00:00 2001 From: Geoff Seemueller <28698553+geoffsee@users.noreply.github.com> Date: Fri, 10 Jan 2025 10:12:35 -0500 Subject: [PATCH] Add synchronize event to PR trigger in tests workflow This update ensures that the workflow is triggered whenever a pull request is synchronized. It improves CI coverage by running tests for updated PRs, reducing the risk of unverified changes. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3b31954..f605241 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,7 @@ on: branches: [main] pull_request: branches: [main] - types: [opened, reopened] + types: [opened, reopened, synchronize] merge_group: # triggers workflow for merge queue types: [checks_requested]