From 946218a3bd98609a334981821b5fbc4e9f3d6c69 Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Mon, 6 Jul 2026 11:02:29 +0400 Subject: [PATCH] Renamed CI gate job to the org-standard "Required checks pass" Branch protection currently requires the check named "All tests pass". Requiring a repo-specific or legacy check name couples the ruleset to this workflow's job naming: rename the job and the required check silently stops existing, blocking every PR. The org is standardizing every repository on a single stable aggregator check named "Required checks pass" so rulesets have one uniform, rename-proof target across all repos. 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. Coverage is unchanged: the gate still depends on the same jobs the old gate covered. --- .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 4ed834fb..7a079a44 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,8 +28,8 @@ jobs: - run: pnpm test:ci - all-tests-pass: - name: All tests pass + required-checks-pass: + name: Required checks pass if: always() needs: [test] runs-on: ubuntu-latest