From 85d1444aedc58d25017d2b5b2397cb205853dbc2 Mon Sep 17 00:00:00 2001 From: zerosnacks Date: Thu, 11 Sep 2025 14:01:38 +0200 Subject: [PATCH] add ci-success --- .github/workflows/ci.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6dd698bed..f59159895 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -109,3 +109,21 @@ jobs: deny: uses: ithacaxyz/ci/.github/workflows/deny.yml@main + + ci-success: + runs-on: ubuntu-latest + if: always() + needs: + - test + - doctest + - 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) }}