From 098cf34355f2b0fe45333e750ef45d433877cb9b Mon Sep 17 00:00:00 2001 From: Nomads_Reach <144523850+NomadsReach@users.noreply.github.com> Date: Sun, 16 Aug 2026 20:07:37 -0400 Subject: [PATCH] Run the Gitea sync workflow on the self-hosted runner (#23) GitHub-hosted runners are billing-blocked for this org, so the hosted open-gitea-pr job never started (empty logs, immediate failure on every push to main). Retarget it to [self-hosted, Linux, X64] like the other workflows; the runner has LAN access to the Gitea host, and this workflow only fires on push to main, so it never runs untrusted fork PR code. --- .github/workflows/open-gitea-pr.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/open-gitea-pr.yml b/.github/workflows/open-gitea-pr.yml index 42a2d4d..bc4c4d7 100644 --- a/.github/workflows/open-gitea-pr.yml +++ b/.github/workflows/open-gitea-pr.yml @@ -14,7 +14,11 @@ permissions: jobs: open-gitea-pr: - runs-on: ubuntu-latest + # GitHub-hosted runners are billing-blocked for this org, so the hosted job + # never started. Run on the self-hosted runner, which also has LAN access to + # the Gitea host. This workflow only fires on push to main (never on PRs from + # forks), so it is safe on the private runner. + runs-on: [self-hosted, Linux, X64] steps: - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v4 with: