Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/pr_title.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
name: PR Title Check

on:
# Only the PR title and description are validated, and neither changes on a
# push (synchronize). Including synchronize caused a race: a Dependabot rebase
# force-pushes and edits the PR body at the same time, firing synchronize and
# edited together. Both land in the same concurrency group, so one run is
# cancelled, leaving a cancelled check-run on the head commit that fails the
# status rollup.
pull_request_target:
types: [opened, edited, synchronize, reopened]
types: [opened, edited, reopened]

# Most recent PR change supersedes previous changes.
concurrency:
Expand Down
Loading