Skip to content

Commit eb1e966

Browse files
committed
Add merge_queue trigger to test-and-release workflow
This enables the CI workflow to run when PRs are added to GitHub's merge queue, ensuring checks pass before automatic merging. https://claude.ai/code/session_01Fm16f35tWeM3agGyE91wft
1 parent eb9fa6b commit eb1e966

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test-and-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
name: Test and Release
22

3-
# Run this job on all pushes to main and for pull requests
3+
# Run this job on all pushes to main, for pull requests, and merge queue
44
on:
55
push:
66
branches:
77
# This avoids having duplicate builds in non-forked PRs
88
- "main"
99
pull_request: {}
10+
merge_queue: {}
1011

1112
# Cancel previous PR/branch runs when a new commit is pushed
1213
concurrency:

0 commit comments

Comments
 (0)