From 4199f1e798f1b8237dec447e60cd1750f1b81a0e Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Mon, 6 Jul 2026 11:00:44 +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 repo's specific CI naming. The org is standardizing every repo on a single stable aggregator check named "Required checks pass" so rulesets can be managed uniformly and never silently 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 name, so this PR must go green on the new gate before merge. --- .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