From a83a24c7d716749ee8182b0e45e751aae8701bfe Mon Sep 17 00:00:00 2001 From: Patrick Linnane Date: Fri, 17 Jul 2026 23:56:33 -0700 Subject: [PATCH] workflows/tests: replace alls-green with a conclusion job Signed-off-by: Patrick Linnane --- .github/workflows/tests.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3a0fc7baa..8716a6d84 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,10 +43,13 @@ jobs: disable_search: true token: ${{ secrets.CODECOV_TOKEN }} - check: + conclusion: needs: tests - runs-on: ubuntu-latest + if: always() + runs-on: ubuntu-slim steps: - - uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2 - with: - jobs: ${{ toJSON(needs) }} + - name: Result + env: + RESULT: ${{ needs.tests.result }} + run: | + [[ "${RESULT}" == success ]]