|
|
@@ -4,6 +4,8 @@ on:
|
|
|
push:
|
|
|
branches: ["master"]
|
|
|
pull_request:
|
|
|
+ merge_group:
|
|
|
+ types: [checks_requested]
|
|
|
|
|
|
env:
|
|
|
CARGO_NET_GIT_FETCH_WITH_CLI: true
|
|
|
@@ -75,3 +77,19 @@ jobs:
|
|
|
steps:
|
|
|
- uses: actions/checkout@v3
|
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
|
|
+
|
|
|
+ Result:
|
|
|
+ name: Result
|
|
|
+ runs-on: ubuntu-latest
|
|
|
+ needs:
|
|
|
+ - "Test"
|
|
|
+ - "WASM"
|
|
|
+ - "Lint"
|
|
|
+ - "Audit"
|
|
|
+ steps:
|
|
|
+ - name: Mark the job as successful
|
|
|
+ run: exit 0
|
|
|
+ if: success()
|
|
|
+ - name: Mark the job as unsuccessful
|
|
|
+ run: exit 1
|
|
|
+ if: "!success()"
|