Skip to content

Commit b228574

Browse files
authored
Enable the GitHub merge queue (#851)
1 parent 3a474c3 commit b228574

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yml

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
push:
55
branches: ["master"]
66
pull_request:
7+
merge_group:
8+
types: [checks_requested]
79

810
env:
911
CARGO_NET_GIT_FETCH_WITH_CLI: true
@@ -75,3 +77,19 @@ jobs:
7577
steps:
7678
- uses: actions/checkout@v3
7779
- uses: EmbarkStudios/cargo-deny-action@v1
80+
81+
Result:
82+
name: Result
83+
runs-on: ubuntu-latest
84+
needs:
85+
- "Test"
86+
- "WASM"
87+
- "Lint"
88+
- "Audit"
89+
steps:
90+
- name: Mark the job as successful
91+
run: exit 0
92+
if: success()
93+
- name: Mark the job as unsuccessful
94+
run: exit 1
95+
if: "!success()"

0 commit comments

Comments
 (0)