From be17472cd55a0a8617d65e4200e41a45820d8b8d Mon Sep 17 00:00:00 2001 From: Jon Kazama Date: Tue, 12 May 2026 11:05:52 +0200 Subject: [PATCH] chore(ci): migrate workflows to .gitea/workflows/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Gitea Actions reads exclusively from .gitea/workflows/, not from .github/workflows/. Since the cutover in v1.4.3 only the security workflow has been running — release and forge-announce silently sat in the wrong directory and never fired on any tag push. v1.4.3 must have been released manually. Move build, release and forge-announce yamls to .gitea/workflows/. The .github/forge-posts/ and .github/release-footer.md data files stay where they are; the workflows reference them by repo-relative path and that keeps working. For the v1.4.4 backfill: workflow_dispatch via the Gitea web UI with tag=v1.4.4 will run release.yml + forge-announce.yml against the tagged tree (which doesn't contain this migration). The dispatch yaml itself is read from the default branch, not the tag, so the missing yamls in the v1.4.4 tag tree don't matter. --- {.github => .gitea}/workflows/build.yml | 0 {.github => .gitea}/workflows/forge-announce.yml | 0 {.github => .gitea}/workflows/release.yml | 0 3 files changed, 0 insertions(+), 0 deletions(-) rename {.github => .gitea}/workflows/build.yml (100%) rename {.github => .gitea}/workflows/forge-announce.yml (100%) rename {.github => .gitea}/workflows/release.yml (100%) diff --git a/.github/workflows/build.yml b/.gitea/workflows/build.yml similarity index 100% rename from .github/workflows/build.yml rename to .gitea/workflows/build.yml diff --git a/.github/workflows/forge-announce.yml b/.gitea/workflows/forge-announce.yml similarity index 100% rename from .github/workflows/forge-announce.yml rename to .gitea/workflows/forge-announce.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