From 984ec112692b213930002debc86e3a0dfe072b67 Mon Sep 17 00:00:00 2001 From: ciotlosm Date: Sat, 11 Jul 2026 18:05:56 +0300 Subject: [PATCH] chore(workflows): switch to pr-check.yml@v24 (self-contained wrapper) The old call to n3ary/actions/.github/workflows/pr-validation.yml@v23 worked but bypassed the canonical entry point. v24 of pr-check.yml is now self-contained (the ascii-check + drift-check jobs are inlined, not a passthrough), so the check name stays clean: "pr-check:ascii-check" instead of the nested "pr-check:pr-validation:ascii-check" we had with the old passthrough design. Branch protection already requires "pr-check / ASCII-only check" and "pr-check / Standards drift check" - no change needed there. The local job in this repo was already renamed to "pr-check:" in a prior PR, so the check prefix matches. Refs: n3ary/actions#38 --- .github/workflows/pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index dbc8a3d..4996fe5 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -13,6 +13,6 @@ permissions: jobs: pr-check: - uses: n3ary/actions/.github/workflows/pr-validation.yml@v23 + uses: n3ary/actions/.github/workflows/pr-check.yml@v24 with: enable-drift-check: false \ No newline at end of file