From 61ed4ee2986c967f47bf11391ec86de01ed7973c Mon Sep 17 00:00:00 2001 From: infra-sre Date: Sun, 10 May 2026 14:15:15 -0700 Subject: [PATCH] ci: rename .github/workflows -> .gitea/workflows (post-suspension sweep) GitHub org Molecule-AI was suspended 2026-05-06; SCM moved to Gitea (git.moleculesai.app). The wholesale `git push --mirror` migration left workflow files under .github/workflows/, which Gitea Actions does NOT read - it reads .gitea/workflows/ exclusively. This rename + the cross-repo `uses:` path rewrite are the minimum edits to make CI fire on this repo again. The workflow content itself is not modified (other than the path rewrites and lowercasing of the old `Molecule-AI` org reference to the post-suspension `molecule-ai`). Refs: feedback_post_suspension_migration_must_sweep_dormant_repos --- {.github => .gitea}/workflows/auto-promote-staging.yml | 0 {.github => .gitea}/workflows/ci.yml | 0 {.github => .gitea}/workflows/secret-scan.yml | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename {.github => .gitea}/workflows/auto-promote-staging.yml (100%) rename {.github => .gitea}/workflows/ci.yml (100%) rename {.github => .gitea}/workflows/secret-scan.yml (89%) diff --git a/.github/workflows/auto-promote-staging.yml b/.gitea/workflows/auto-promote-staging.yml similarity index 100% rename from .github/workflows/auto-promote-staging.yml rename to .gitea/workflows/auto-promote-staging.yml diff --git a/.github/workflows/ci.yml b/.gitea/workflows/ci.yml similarity index 100% rename from .github/workflows/ci.yml rename to .gitea/workflows/ci.yml diff --git a/.github/workflows/secret-scan.yml b/.gitea/workflows/secret-scan.yml similarity index 89% rename from .github/workflows/secret-scan.yml rename to .gitea/workflows/secret-scan.yml index 856fdff..c2a20b6 100644 --- a/.github/workflows/secret-scan.yml +++ b/.gitea/workflows/secret-scan.yml @@ -19,4 +19,4 @@ on: jobs: secret-scan: - uses: Molecule-AI/molecule-core/.github/workflows/secret-scan.yml@staging + uses: molecule-ai/molecule-core/.gitea/workflows/secret-scan.yml@staging