Skip to content

Commit 33c4e6a

Browse files
committed
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.
1 parent ef96a31 commit 33c4e6a

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

.github/workflows/pull-request-checks.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,12 @@ on:
66
jobs:
77
checks:
88
uses: ./.github/workflows/shared.yml
9+
10+
all-green:
11+
if: always()
12+
needs: [checks]
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
16+
with:
17+
jobs: ${{ toJSON(needs) }}

0 commit comments

Comments
 (0)