Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .github/workflows/commit-convention.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ name: commit-convention
on:
pull_request:
types: [opened, edited, reopened, synchronize]
# The merge queue fires merge_group and waits for required checks to report on
# it. Markers are already validated at PR time, so the job just needs to run
# and pass here — otherwise a required "markers" check deadlocks the queue.
merge_group:

permissions:
contents: read
Expand All @@ -21,6 +25,7 @@ jobs:
fetch-depth: 0

- name: Validate [bump:*] markers
if: github.event_name == 'pull_request' # merge_group: validated at PR time, just report green
env:
PR_TITLE: ${{ github.event.pull_request.title }}
BASE_SHA: ${{ github.event.pull_request.base.sha }}
Expand Down
Loading