Skip to content

Commit

Permalink
ci: add success job (alloy-rs#795)
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes authored and ZelionD committed Nov 11, 2024
1 parent 0ce57db commit ef92ba5
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,3 +169,22 @@ jobs:
with:
components: rustfmt
- run: cargo fmt --all --check

ci-success:
name: ci success
runs-on: ubuntu-latest
if: always()
needs:
- test
- miri
- wasm
- feature-checks
- check-no-std
- clippy
- docs
- fmt
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}

0 comments on commit ef92ba5

Please sign in to comment.