Skip to content

Commit

Permalink
GitHub Actions: Turn on merge queue (#108)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
frank-weindel authored Dec 13, 2023
2 parents 8489634 + 58fa986 commit 3a2342e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
on:
- pull_request

pull_request:
merge_group:
types: [checks_requested]
jobs:
run-all-tests:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 3a2342e

Please sign in to comment.