mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-31 16:33:10 +00:00
github: add merge_group
event to several workflows
These are the workflows that run on PRs, so they need to have the `merge_group` event added to them if we want to use the merge queue. Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
parent
a621d8cf3f
commit
fe9ea505b6
4 changed files with 4 additions and 0 deletions
1
.github/workflows/build-nix.yml
vendored
1
.github/workflows/build-nix.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
merge_group:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
1
.github/workflows/build.yml
vendored
1
.github/workflows/build.yml
vendored
|
@ -3,6 +3,7 @@ name: build
|
|||
on:
|
||||
push:
|
||||
pull_request:
|
||||
merge_group:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
1
.github/workflows/codespell.yml
vendored
1
.github/workflows/codespell.yml
vendored
|
@ -5,6 +5,7 @@ on:
|
|||
branches:
|
||||
- main
|
||||
pull_request:
|
||||
merge_group:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
1
.github/workflows/dependabot.yml
vendored
1
.github/workflows/dependabot.yml
vendored
|
@ -2,6 +2,7 @@ name: Enable auto-merge for Dependabot PRs
|
|||
|
||||
on:
|
||||
pull_request:
|
||||
merge_group:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
||||
|
|
Loading…
Reference in a new issue