From a662ac873492ffaca5262373c809653ab3d4093a Mon Sep 17 00:00:00 2001 From: etrobert-bot Date: Wed, 8 Jul 2026 16:01:09 +0200 Subject: [PATCH] ci: rename the Checks gate all to all-checks Pair it with the Build workflow's all-builds gate for a symmetric, per-workflow naming scheme. Both can't be 'all' since branch protection matches required checks by bare job name. Co-Authored-By: Claude Opus 4.8 --- .github/workflows/checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 1e546b89..dfe93ca0 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -75,8 +75,8 @@ jobs: # requires format, eval, and every dynamically-discovered lint leg (the # matrix job is failure if any leg fails), so new checks are covered # without touching branch protection. - all: - name: all + all-checks: + name: all-checks needs: [format, eval, discover, lint] if: always() runs-on: ubuntu-latest