From 33c4e6aea0a5cd2797cd7b766de994c004e65453 Mon Sep 17 00:00:00 2001 From: Max Isbey <224885523+maxisbey@users.noreply.github.com> Date: Thu, 22 Jan 2026 13:52:18 +0000 Subject: [PATCH] ci: add all-green job to pull-request-checks workflow The repository ruleset requires an 'all-green' status check for PRs targeting v1.x, but the pull-request-checks workflow was missing this job. This caused PRs to v1.x to be permanently blocked despite all individual checks passing. Add the all-green aggregation job matching the pattern used in main's CI workflow. --- .github/workflows/pull-request-checks.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/pull-request-checks.yml b/.github/workflows/pull-request-checks.yml index a7e7a8bf13..502a3631d4 100644 --- a/.github/workflows/pull-request-checks.yml +++ b/.github/workflows/pull-request-checks.yml @@ -6,3 +6,12 @@ on: jobs: checks: uses: ./.github/workflows/shared.yml + + all-green: + if: always() + needs: [checks] + runs-on: ubuntu-latest + steps: + - uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2 + with: + jobs: ${{ toJSON(needs) }}