diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a69475..f9834e8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -133,3 +133,22 @@ jobs: deny: uses: ithacaxyz/ci/.github/workflows/deny.yml@main + + ci-success: + runs-on: ubuntu-latest + if: always() + needs: + - test + - doctest + - no-std + - feature-checks + - clippy + - docs + - fmt + - deny + timeout-minutes: 30 + steps: + - name: Decide whether the needed jobs succeeded or failed + uses: re-actors/alls-green@release/v1 + with: + jobs: ${{ toJSON(needs) }}