From 351081e8cbcdbab0207cb6bcd63a683b57bccc1d Mon Sep 17 00:00:00 2001 From: infra-sre Date: Sun, 10 May 2026 14:13:45 -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 --- .gitea/workflows/ci.yml | 5 +++++ .github/workflows/ci.yml | 5 ----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 .gitea/workflows/ci.yml delete mode 100644 .github/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..27c2e43 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,5 @@ +name: CI +on: [push, pull_request] +jobs: + validate: + uses: molecule-ai/molecule-ci/.gitea/workflows/validate-plugin.yml@main diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 26aeef0..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,5 +0,0 @@ -name: CI -on: [push, pull_request] -jobs: - validate: - uses: molecule-ai/molecule-ci/.github/workflows/validate-plugin.yml@main -- 2.45.2