Skip to content

Commit

Permalink
Enable the GitHub merge queue
Browse files Browse the repository at this point in the history
  • Loading branch information
mrobinson authored and lucacasonato committed Jul 12, 2023
1 parent 93b8e2f commit ed2324c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/main.yml
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches: ["master"]
pull_request:
merge_group:
types: [checks_requested]

env:
CARGO_NET_GIT_FETCH_WITH_CLI: true
Expand Down Expand Up @@ -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()"

0 comments on commit ed2324c

Please sign in to comment.