We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fd98554 + b228574 commit b0bb942Copy full SHA for b0bb942
.github/workflows/main.yml
@@ -4,6 +4,8 @@ on:
4
push:
5
branches: ["master"]
6
pull_request:
7
+ merge_group:
8
+ types: [checks_requested]
9
10
env:
11
CARGO_NET_GIT_FETCH_WITH_CLI: true
@@ -82,3 +84,19 @@ jobs:
82
84
steps:
83
85
- uses: actions/checkout@v3
86
- 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