Run the Gitea sync workflow on the self-hosted runner (#23)
Acceptance (end-to-end TCP) / End-to-end TCP acceptance (push) Canceled after 0s
CSharp Server Gate / Repository policy, C# build and test (push) Canceled after 0s
GNS Transport Bridge / Linux native GNS bridge (push) Canceled after 0s
Host GUI (Avalonia) / Build Avalonia host (push) Canceled after 0s
Acceptance (end-to-end TCP) / End-to-end TCP acceptance (pull_request) Canceled after 0s
CSharp Server Gate / Repository policy, C# build and test (pull_request) Canceled after 0s
GNS Transport Bridge / Linux native GNS bridge (pull_request) Canceled after 0s
Host GUI (Avalonia) / Build Avalonia host (pull_request) Canceled after 0s

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.
This commit is contained in:
Nomads_Reach
2026-08-16 20:07:37 -04:00
committed by GitHub
parent 51d35c935b
commit 098cf34355
+5 -1
View File
@@ -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: