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.
1 parent 3a474c3 commit b228574Copy full SHA for b228574
.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
@@ -75,3 +77,19 @@ jobs:
75
77
steps:
76
78
- uses: actions/checkout@v3
79
- 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