From 240e3c15daf2d1cb4d7cd075a9fdaea1182e5f68 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Tue, 4 Aug 2026 08:08:10 +0200 Subject: [PATCH] ci: rename branch-protection caller job id `check` -> `branch-protection` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit GitHub names a reusable-workflow status context ` / `, so this caller reported as `check / check-branch` while the org ruleset requires `branch-protection / check-branch`. Also repoints the reusable workflow from `Conduction/.github` to `ConductionNL/.github`. The `Conduction` org does not exist (404), so on this branch the workflow could not resolve at all — a second, independent reason the required context never reported. --- .github/workflows/branch-protection.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/branch-protection.yml b/.github/workflows/branch-protection.yml index e2efcf6e2..cdf892097 100644 --- a/.github/workflows/branch-protection.yml +++ b/.github/workflows/branch-protection.yml @@ -7,5 +7,10 @@ on: - beta jobs: - check: - uses: Conduction/.github/.github/workflows/branch-protection.yml@main + # Job id must stay `branch-protection` so the check reports as + # `branch-protection / check-branch`, which is the context name the org + # ruleset requires. GitHub names a reusable-workflow context + # ` / `, so renaming this job silently + # detaches the required status check and leaves PRs permanently pending. + branch-protection: + uses: ConductionNL/.github/.github/workflows/branch-protection.yml@main