From 443e6229a3707ec95e8192591c2c7b54cb448261 Mon Sep 17 00:00:00 2001 From: security-auditor Date: Thu, 7 May 2026 00:59:57 -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 deccb1a..d210585 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-org-template.yml@main + uses: molecule-ai/molecule-ci/.github/workflows/validate-org-template.yml@main