From c44145bb3f8dabf899a98168f433312288f0028c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20T=C3=BCchler?= Date: Sat, 19 Sep 2026 18:40:34 +0200 Subject: [PATCH] ci: run checks on the self-hosted tuejon-ci runner Move the check job off GitHub-hosted runners onto the repository's own runner, and skip pull requests from forks so outside code never runs there. --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1c5cbc1..b4043ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,9 @@ permissions: jobs: check: - runs-on: ubuntu-latest + # The runner lives on VD-FW next to production keys: never run fork code there. + if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository + runs-on: [self-hosted, Linux, X64, tuejon-ci] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4