diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57457dfb8..5902163bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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) }}