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:
Austin Seipp 2025-01-07 20:46:21 -06:00
parent a621d8cf3f
commit fe9ea505b6
4 changed files with 4 additions and 0 deletions

View file

@ -5,6 +5,7 @@ on:
branches:
- main
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

View file

@ -3,6 +3,7 @@ name: build
on:
push:
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

View file

@ -5,6 +5,7 @@ on:
branches:
- main
pull_request:
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

View file

@ -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 }}