From 67ecae0be824a00774393389bd9a4e7a31c90777 Mon Sep 17 00:00:00 2001 From: Hewston Fox Date: Mon, 9 Mar 2026 01:28:18 +0200 Subject: [PATCH] chore: try fix pipeline --- .gitea/workflows/autofix.ci.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/autofix.ci.yaml b/.gitea/workflows/autofix.ci.yaml index 5bf3d20..14cb0e2 100644 --- a/.gitea/workflows/autofix.ci.yaml +++ b/.gitea/workflows/autofix.ci.yaml @@ -52,6 +52,7 @@ jobs: - name: Commit fixes run: | + GITEA_HOST="${GITEA_HOST_IP:-172.20.0.1}" git config user.name "autofix" git config user.email "noreply@autofix.ci" git diff --quiet && git diff --staged --quiet || \ @@ -59,4 +60,4 @@ jobs: git push "http://oauth2:${GITHUB_TOKEN}@${GITEA_HOST}:3000/${{ github.repository }}.git" HEAD:${{ github.head_ref }} env: GITHUB_TOKEN: ${{ github.token }} - GITEA_HOST: ${{ secrets.GITEA_HOST_IP }} + GITEA_HOST_IP: ${{ secrets.GITEA_HOST_IP }}