Skip to content

Commit b0bb942

Browse files
committed
Merge branch 'master' into no_std
2 parents fd98554 + b228574 commit b0bb942

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
@@ -82,3 +84,19 @@ jobs:
8284
steps:
8385
- uses: actions/checkout@v3
8486
- uses: EmbarkStudios/cargo-deny-action@v1
87+
88+
Result:
89+
name: Result
90+
runs-on: ubuntu-latest
91+
needs:
92+
- "Test"
93+
- "WASM"
94+
- "Lint"
95+
- "Audit"
96+
steps:
97+
- name: Mark the job as successful
98+
run: exit 0
99+
if: success()
100+
- name: Mark the job as unsuccessful
101+
run: exit 1
102+
if: "!success()"

0 commit comments

Comments
 (0)