Skip to content

Commit 1401623

Browse files
committed
Fix: Add 'synchronize' event to PR workflow triggers
The workflow was missing 'synchronize' trigger type, causing it to not run when PRs are updated with new commits. This is needed to run CI on PR updates (e.g., after rebasing or pushing new commits). Trigger types now: - opened: New PR created - reopened: Closed PR reopened - synchronize: PR updated with new commits
1 parent 5dbbd87 commit 1401623

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
types:
99
- "reopened"
1010
- "opened"
11+
- "synchronize"
1112
workflow_call:
1213
workflow_dispatch:
1314

0 commit comments

Comments
 (0)