From 782b846f9a107d55e4274c60d850ff151d4c9298 Mon Sep 17 00:00:00 2001 From: Aileen Booker Date: Mon, 6 Jul 2026 11:04:27 +0400 Subject: [PATCH] Renamed CI gate job to the standard "Required checks pass" check Branch protection previously required the check named "All tests pass", which couples the ruleset to this repo's particular CI job naming. The org is standardizing every repo on a single stable aggregator check named "Required checks pass", so rulesets can require one identical context everywhere regardless of how the underlying test matrix evolves. The branch ruleset is being updated in the same pass to require the new check name, so this change 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 4a363a382..b3786366f 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