From 861b562d12f85178a8d2e88685a3d2da2187313a Mon Sep 17 00:00:00 2001 From: infra-sre Date: Sun, 10 May 2026 14:12:49 -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/release.yml | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename {.github => .gitea}/workflows/auto-promote-staging.yml (100%) rename {.github => .gitea}/workflows/ci.yml (100%) rename {.github => .gitea}/workflows/release.yml (100%) 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/release.yml b/.gitea/workflows/release.yml similarity index 100% rename from .github/workflows/release.yml rename to .gitea/workflows/release.yml