Skip to content

Commit ca4d2a1

Browse files
authored
ci: trigger check workflows on merge_group for merge queue (#516)
Merge queues run required checks on the merge_group event; a workflow without that trigger never reports, so the queue would stall exactly the way path-filtered required checks stalled PRs (#507's lesson). CodeQL runs default setup, which handles merge groups natively.
1 parent 853b59a commit ca4d2a1

3 files changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: CI
22

33
on:
4+
merge_group:
45
push:
56
branches: [main]
67
pull_request:

.github/workflows/python-sdk.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ name: Python SDK conformance and cross-impl determinism
99
# (D136). Path-scoped to the byte-identity surface.
1010

1111
on:
12+
merge_group:
1213
push:
1314
paths:
1415
- 'python/**'

.github/workflows/security-scan.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ name: security-scan
1818
# unchanged by this workflow.
1919

2020
on:
21+
merge_group:
2122
push:
2223
branches: [main]
2324
pull_request:

0 commit comments

Comments
 (0)