From 838c188c75bbe1966930aad95d46107867bd3cf8 Mon Sep 17 00:00:00 2001 From: ciotlosm Date: Sat, 11 Jul 2026 16:38:55 +0300 Subject: [PATCH] chore(workflows): rename local job to pr-check so check prefix matches branch protection Branch protection now requires "pr-check / ASCII-only check" and "pr-check / Standards drift check" (set up to match the new shared wrapper contract). The local job was still named "shared", producing checks prefixed with "shared:" instead. Without this rename, the PR can never satisfy the required status checks. Also bypasses the pr-check.yml wrapper and calls pr-validation.yml@v23 directly. The wrapper adds an extra job layer ("pr-check:pr-validation:ascii-check") that made the check name harder to read. With the direct call + the local job renamed to "pr-check", the check name is the clean "pr-check:ascii-check" / "pr-check:Standards drift check" the branch protection expects. Refs: n3ary/actions#35, n3ary/actions#36 --- .github/workflows/pr-check.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 8389b02..4336c66 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -25,7 +25,7 @@ permissions: contents: read jobs: - shared: - uses: n3ary/actions/.github/workflows/pr-check.yml@v23 + pr-check: + uses: n3ary/actions/.github/workflows/pr-validation.yml@v23 with: enable-drift-check: false