From 0a58eb7bfe6932ca4b0f911772158dff74b601e5 Mon Sep 17 00:00:00 2001 From: security-auditor Date: Thu, 7 May 2026 00:59:10 -0700 Subject: [PATCH] fix(ci): lowercase 'molecule-ai/' in cross-repo workflow refs Gitea is case-sensitive on owner slugs; canonical is lowercase `molecule-ai/...`. Mixed-case `Molecule-AI/...` refs fail-at-0s when the runner tries to resolve the cross-repo workflow / checkout. Same fix as molecule-controlplane#12. Mechanical case-correction; no behavior change beyond making CI resolve again. Refs: internal#46 Co-Authored-By: Claude Opus 4.7 (1M context) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8fb9d3..26aeef0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,4 +2,4 @@ name: CI on: [push, pull_request] jobs: validate: - uses: Molecule-AI/molecule-ci/.github/workflows/validate-plugin.yml@main + uses: molecule-ai/molecule-ci/.github/workflows/validate-plugin.yml@main