Skip to content

Commit 7779b07

Browse files
authored
Merge pull request #17 from namespacelabs/niklas-run-on-merge
run checks on merge queue
2 parents 20b0b2d + ea5a844 commit 7779b07

File tree

8 files changed

+32
-0
lines changed

8 files changed

+32
-0
lines changed

.github/workflows/go.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "10 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/in-container.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "5 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/maven.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "15 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/metadata.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "55 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/pnpm.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "20 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/python.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "25 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/rust.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "30 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

.github/workflows/yarn.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ on:
1010
- cron: "35 */6 * * *"
1111
workflow_dispatch:
1212

13+
# Allow check to run on the merge queue so that it is eligible to be a "required" check.
14+
merge_group:
15+
types: [checks_requested]
16+
1317
permissions:
1418
contents: read
1519

0 commit comments

Comments
 (0)