Skip to content

Commit 162865e

Browse files
authored
Enable workflows to run in merge queue (#2629)
## Which problem is this PR solving? - Without this the PRs get stuck in the merge queue. Signed-off-by: Yuri Shkuro <[email protected]>
1 parent b7c7c56 commit 162865e

File tree

5 files changed

+11
-10
lines changed

5 files changed

+11
-10
lines changed

.github/workflows/check_bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: Bundle Size Check
22
on:
3+
merge_group:
34
pull_request:
45
branches: [main]
5-
66
push:
77
branches: [main]
88

.github/workflows/ci-label-check.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Verify PR Label
22

33
on:
4+
merge_group:
45
pull_request:
56
types:
67
- opened

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: "CodeQL"
22

33
on:
4-
push:
5-
branches: [main]
6-
4+
merge_group:
75
pull_request:
86
branches: [main]
7+
push:
8+
branches: [main]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}

.github/workflows/lint-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: "Lint and Build"
22

33
on:
4-
push:
5-
branches: [main]
6-
4+
merge_group:
75
pull_request:
86
branches: [main]
7+
push:
8+
branches: [main]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}

.github/workflows/unit-tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name: "Unit Tests"
22

33
on:
4-
push:
5-
branches: [main]
6-
4+
merge_group:
75
pull_request:
86
branches: [main]
7+
push:
8+
branches: [main]
99

1010
concurrency:
1111
group: ${{ github.workflow }}-${{ (github.event.pull_request && github.event.pull_request.number) || github.ref || github.run_id }}

0 commit comments

Comments
 (0)