Skip to content

Commit 29fbab5

Browse files
authored
Fix workflows not running in merge queues.
1 parent 81d3da3 commit 29fbab5

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

.github/workflows/build-and-test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- 'src/**'
99
- 'build/**'
1010
pull_request:
11+
merge_group: # Needed for PR merge queues
12+
types: [ checks_requested ]
1113
workflow_dispatch:
1214

1315
concurrency:

.github/workflows/build-docs.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ on:
1111
- 'src/**'
1212
pull_request:
1313
branches: [main]
14+
merge_group: # Needed for PR merge queues
15+
types: [ checks_requested ]
1416
workflow_dispatch:
1517
inputs:
1618
target_branch:

.github/workflows/codeql.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ on:
1515
- 'docs/**'
1616
- '**/*.md'
1717
- '**/*.txt'
18+
merge_group: # Needed for PR merge queues
19+
types: [ checks_requested ]
1820
schedule:
1921
- cron: '41 11 * * 6'
2022

0 commit comments

Comments
 (0)