Skip to content

Commit 29dcf23

Browse files
committed
Run verify workflow after pushes
Currently, we do not run the PR title verification after pushes to a PR. This means that if a PR with an invalid title is opened, then pushed to, the check won't run and nothing will keep the PR from merging. GitHub doesn't seem to be very explicit about the meaning of synchronize, the only source I could quickly find is https://github.blog/2011-10-19-all-of-the-hooks/
1 parent 836b363 commit 29dcf23

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
on:
22
pull_request_target:
3-
types: [opened, edited, reopened]
3+
types: [opened, edited, reopened, synchronize]
44

55
jobs:
66
verify:

0 commit comments

Comments
 (0)