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.
This commit is contained in:
Geoff Seemueller
2025-01-10 10:12:35 -05:00
parent 2c9488f2cc
commit 327b509467

View File

@@ -5,7 +5,7 @@ on:
branches: [main] branches: [main]
pull_request: pull_request:
branches: [main] branches: [main]
types: [opened, reopened] types: [opened, reopened, synchronize]
merge_group: # triggers workflow for merge queue merge_group: # triggers workflow for merge queue
types: [checks_requested] types: [checks_requested]