Skip to content

Commit 6386041

Browse files
NobodysNightmareoliverguenther
authored andcommitted
Add "opened" to triggers for version check
We've had a few instances, where the PR target branch mismatched the WP version, but it was only noticed after a second push to the pull request (presumably that's the "synchronize" type). This change intends to ensure that the version check is already performed, when the PR is opened.
1 parent 552efb2 commit 6386041

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/version-check.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@ name: Check work package version
22

33
on:
44
pull_request:
5-
types: [labeled, synchronize, ready_for_review]
5+
types:
6+
- opened
7+
- labeled
8+
- synchronize
9+
- ready_for_review
610

711
permissions:
812
contents: read # to fetch code (actions/checkout)

0 commit comments

Comments
 (0)