Skip to content

Commit 3a2342e

Browse files
GitHub Actions: Turn on merge queue (#108)
By default, when our PR check runs against each PR it is only testing the specific commit HEAD of the PR branch, without necessarily also considering the current HEAD of `main`, unless that commit has been merged in manually into the PR branch. Merge queues provide a way of automating this. https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/configuring-pull-request-merges/managing-a-merge-queue
2 parents 8489634 + 58fa986 commit 3a2342e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
on:
2-
- pull_request
3-
2+
pull_request:
3+
merge_group:
4+
types: [checks_requested]
45
jobs:
56
run-all-tests:
67
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)