From 005d1b48e479b75d71027daa09f243a1a8a42711 Mon Sep 17 00:00:00 2001 From: Emmet Townsend Date: Thu, 18 Jun 2026 00:19:56 +0100 Subject: [PATCH] Add check rollup job to CI workflow Co-Authored-By: Claude Opus 4.6 --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 75c664f..8787002 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,3 +53,17 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + + check: + if: always() + needs: + - lint + - unit-tests + - sonar-scan + runs-on: ubuntu-latest + steps: + - name: Decide whether the needed jobs succeeded or failed + uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1 + with: + allowed-skips: sonar-scan + jobs: ${{ toJSON(needs) }}