From 986de4cbdfb1f2095cbdfea1e37c5bb5fe59d44f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=A2=81=E9=9C=87?= Date: Mon, 6 Apr 2026 11:58:18 +0800 Subject: [PATCH] fix: force checkout via public gitea url for runner compatibility --- .gitea/workflows/generate-rules.yml | 1 + .gitea/workflows/publish-rules.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitea/workflows/generate-rules.yml b/.gitea/workflows/generate-rules.yml index 7d73fd3c6..3e49608da 100644 --- a/.gitea/workflows/generate-rules.yml +++ b/.gitea/workflows/generate-rules.yml @@ -25,6 +25,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 0 + github-server-url: https://git.halonice.com - name: Setup Python uses: actions/setup-python@v5 diff --git a/.gitea/workflows/publish-rules.yml b/.gitea/workflows/publish-rules.yml index d3b03caa6..c73d23415 100644 --- a/.gitea/workflows/publish-rules.yml +++ b/.gitea/workflows/publish-rules.yml @@ -40,6 +40,8 @@ jobs: - name: Checkout generator repo if: steps.preflight.outputs.skip != 'true' uses: actions/checkout@v4 + with: + github-server-url: https://git.halonice.com - name: Setup Python if: steps.preflight.outputs.skip != 'true'