Skip to content

Commit

Permalink
[ci] Add omnibus 'success' job. (#443)
Browse files Browse the repository at this point in the history
This job is used to signal to branch protections that all other
jobs have succeeded.
  • Loading branch information
jswrenn committed Oct 2, 2023
1 parent f001cf2 commit 68953ed
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -441,3 +441,13 @@ jobs:
cargo install cargo-readme --version 3.2.0 &> /dev/null || true
cargo install --locked kani-verifier &> /dev/null || true
cargo kani setup &> /dev/null || true
# Used to signal to branch protections that all other jobs have succeeded.
all-jobs-succeed:
name: All checks succeeded
if: success()
runs-on: ubuntu-latest
needs: [build_test, kani, check_fmt, check_readme, check_msrv, check_versions, generate_cache]
steps:
- name: Mark the job as successful
run: exit 0

0 comments on commit 68953ed

Please sign in to comment.