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 f027c36 commit 9b94950Copy full SHA for 9b94950
.github/workflows/ci.yml
@@ -2,10 +2,7 @@ name: CI
2
3
on:
4
pull_request:
5
- push:
6
- branches:
7
- - staging
8
- - trying
+ merge_group:
9
10
jobs:
11
check:
@@ -52,12 +49,12 @@ jobs:
52
49
components: rustfmt
53
50
- run: cargo fmt --check
54
51
55
- # https://github.com/rust-lang/crater/blob/9ab6f9697c901c4a44025cf0a39b73ad5b37d198/.github/workflows/bors.yml#L125-L149
56
- end-success:
57
- name: bors build finished
+ # Used to signal to branch protections that all other jobs have succeeded.
+ all-jobs-succeed:
+ name: All checks succeeded
58
if: success()
59
runs-on: ubuntu-latest
60
- needs: [check, test]
+ needs: [check, msrv, test, check-format]
61
steps:
62
- name: Mark the job as successful
63
run: exit 0
0 commit comments