From a367ac2c7a2988c3697bdac833adeb951b87a710 Mon Sep 17 00:00:00 2001 From: Pastorsimon1798 Date: Thu, 30 Apr 2026 15:31:32 -0700 Subject: [PATCH] Add complementary Blacksmith probe Add a thin caller workflow for the centralized KyaniteLabs Blacksmith probe without replacing existing CI. Constraint: Blacksmith is complementary runner capacity; GitHub remains the control plane and existing repo CI remains authoritative. Rejected: Replace existing workflows | The org migration requires additive Blacksmith capacity, not a wholesale CI transition. Confidence: high Scope-risk: narrow Directive: Keep this workflow advisory unless a repo owner explicitly makes it required. Tested: Workflow is a thin caller into KyaniteLabs/.github reusable Blacksmith probe. Not-tested: Per-repo remote run executes after PR creation. Co-authored-by: OmX --- .github/workflows/blacksmith-probe.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/blacksmith-probe.yml diff --git a/.github/workflows/blacksmith-probe.yml b/.github/workflows/blacksmith-probe.yml new file mode 100644 index 0000000..66e3c52 --- /dev/null +++ b/.github/workflows/blacksmith-probe.yml @@ -0,0 +1,17 @@ +name: Blacksmith Probe + +on: + workflow_dispatch: + pull_request: + types: [opened, synchronize, reopened] + paths: + - '.github/workflows/blacksmith-probe.yml' + +permissions: + contents: read + +jobs: + probe: + uses: KyaniteLabs/.github/.github/workflows/blacksmith-probe.yml@main + with: + probe_label: complementary-runner-probe