From 48e903eb210569f159413ecf2999f9fa1473aae0 Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Mon, 6 Jul 2026 10:52:15 +0400 Subject: [PATCH] Renamed CI gate job to the org-standard "Required checks pass" Branch protection currently requires the check named "All tests pass", which couples the ruleset to this workflow's specific job naming. The org is standardizing every repo on a single stable aggregator check named "Required checks pass", so rulesets never silently break when CI jobs are renamed or the matrix changes. The branch ruleset is being updated in the same pass to require the new check, so this PR must go green on the new gate before merge. Coverage is unchanged: the gate still needs [test], same as the old gate. --- .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 4a363a3..b378636 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -32,8 +32,8 @@ jobs: - run: pnpm exec gscan --fatal --verbose . - all-tests-pass: - name: All tests pass + required-checks-pass: + name: Required checks pass if: always() needs: [test] runs-on: ubuntu-latest