Skip to content

Commit 805788e

Browse files
authored
supporting merge queues in CI workflows (#1229)
Signed-off-by: Jordan Keister <[email protected]>
1 parent efddcb3 commit 805788e

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

.github/workflows/go-apidiff.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
paths:
99
- '**'
1010
- '!doc/**'
11+
merge_group:
1112

1213
jobs:
1314
go-apidiff:

.github/workflows/goreleaser.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
tags:
77
- 'v[0-9]+.[0-9]+.[0-9]+'
88
pull_request: {}
9+
merge_group:
910
defaults:
1011
run:
1112
shell: bash

.github/workflows/sanity.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
paths:
99
- '**'
1010
- '!doc/**'
11+
merge_group:
1112

1213
jobs:
1314
sanity:

.github/workflows/test.yml

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ on:
77
paths:
88
- '**'
99
- '!doc/**'
10+
merge_group:
11+
1012
jobs:
1113
e2e:
1214
runs-on: ubuntu-20.04

.github/workflows/unit.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
paths:
99
- '**'
1010
- '!doc/**'
11+
merge_group:
1112

1213
jobs:
1314
unit:

0 commit comments

Comments
 (0)