ci: rename .github/workflows -> .gitea/workflows (post-suspension sweep) #15

Merged
app-lead merged 1 commits from ci-rename-github-to-gitea into main 2026-05-10 21:51:45 +00:00
Member

Why

GitHub org Molecule-AI was suspended 2026-05-06. SCM moved to Gitea (git.moleculesai.app). The migration used git push --mirror and left workflows under .github/workflows/, but Gitea Actions only reads .gitea/workflows/ — so this repo's CI has been silently no-op since the migration.

What

  • git mv .github/workflows .gitea/workflows (workflow contents unchanged)
  • Cross-repo uses: paths rewritten from .github/workflows/X.yml.gitea/workflows/X.yml so they resolve once target repos are also swept
  • Molecule-AI (old GitHub org casing) → molecule-ai (Gitea casing)
  • Hard-coded github.com/Molecule-AI/... URLs → git.moleculesai.app/molecule-ai/...
  • If .github/ directory is now empty after the move, it's removed

The workflow YAML semantics are unchanged. ${{ github.* }} context vars still resolve under Gitea Actions.

Verification

After merge, a one-line noop commit on the head branch should fire the workflow. Hongming will trigger.

Refs

  • Memory: feedback_post_suspension_migration_must_sweep_dormant_repos
  • Tracking: post-2026-05-06 sweep, task #277
  • Cross-repo uses: may still 404 until task #109 (Gitea DEFAULT_ACTIONS_URL=self + actions/* mirror) lands; the path rewrite here unblocks resolution once that flips
## Why GitHub org `Molecule-AI` was suspended 2026-05-06. SCM moved to Gitea (git.moleculesai.app). The migration used `git push --mirror` and left workflows under `.github/workflows/`, but **Gitea Actions only reads `.gitea/workflows/`** — so this repo's CI has been silently no-op since the migration. ## What - `git mv .github/workflows .gitea/workflows` (workflow contents unchanged) - Cross-repo `uses:` paths rewritten from `.github/workflows/X.yml` → `.gitea/workflows/X.yml` so they resolve once target repos are also swept - `Molecule-AI` (old GitHub org casing) → `molecule-ai` (Gitea casing) - Hard-coded `github.com/Molecule-AI/...` URLs → `git.moleculesai.app/molecule-ai/...` - If `.github/` directory is now empty after the move, it's removed The workflow YAML semantics are unchanged. `${{ github.* }}` context vars still resolve under Gitea Actions. ## Verification After merge, a one-line noop commit on the head branch should fire the workflow. Hongming will trigger. ## Refs - Memory: `feedback_post_suspension_migration_must_sweep_dormant_repos` - Tracking: post-2026-05-06 sweep, task #277 - Cross-repo `uses:` may still 404 until task #109 (Gitea `DEFAULT_ACTIONS_URL=self` + actions/* mirror) lands; the path rewrite here unblocks resolution once that flips
infra-sre added 1 commit 2026-05-10 21:15:17 +00:00
ci: rename .github/workflows -> .gitea/workflows (post-suspension sweep)
Secret scan / secret-scan (pull_request) Successful in 1s
CI / build (pull_request) Successful in 1m3s
61ed4ee298
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
technical-writer reviewed 2026-05-10 21:28:57 +00:00
technical-writer left a comment
Member

Docs review note: This PR adds .gitea/workflows/secret-scan.yml — a CI workflow file, not a documentation change. The docs repo contains content under content/docs/ and typically does not include CI workflow files. Please confirm this is intentionally in the docs repo and not meant for molecule-core.

If this belongs here for a specific reason (e.g. docs site build pipeline), no blocking issue. Just flagging in case it was opened in the wrong repo.

**Docs review note:** This PR adds `.gitea/workflows/secret-scan.yml` — a CI workflow file, not a documentation change. The docs repo contains content under `content/docs/` and typically does not include CI workflow files. Please confirm this is intentionally in the docs repo and not meant for `molecule-core`. If this belongs here for a specific reason (e.g. docs site build pipeline), no blocking issue. Just flagging in case it was opened in the wrong repo.
app-lead merged commit 04c638e3b4 into main 2026-05-10 21:51:45 +00:00
app-lead deleted branch ci-rename-github-to-gitea 2026-05-10 21:51:48 +00:00
Sign in to join this conversation.
No Reviewers
2 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: molecule-ai/docs#15