From 5da21b55baf14db5f7e78b81d12a398747ec1e70 Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Mon, 6 Jul 2026 10:54:42 +0400 Subject: [PATCH] Standardized required CI check on the org-wide aggregator gate name Branch protection on this repo required a status check named exactly "All tests pass", coupling the ruleset to this workflow's legacy job name. The org is standardizing every repo on a single stable aggregator check named "Required checks pass" so rulesets never break when CI jobs are renamed or matrix legs change. The branch ruleset is being updated in the same pass to require the new check context, so this PR must go green on "Required checks pass" before it can merge. The job shape (if: always(), needs coverage of the test job, fail on failure/cancelled) is unchanged - only the job id and name move to the org convention. --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6091901..d50bdcc 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,8 +28,8 @@ jobs: - run: pnpm test - all-tests-pass: - name: All tests pass + required-checks-pass: + name: Required checks pass if: always() needs: [test] runs-on: ubuntu-latest