From eb644ea7385ee9b1afd9db849370ccf1b495e92f Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Thu, 14 May 2026 20:37:48 +0000 Subject: [PATCH] fix: add RENOVATE_ENDPOINT for Gitea self-hosted instance MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Phase 4 Gitea migration — Renovate CLI needs the endpoint URL to connect to the self-hosted git.farh.net instance. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/renovate.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/renovate.yaml b/.github/workflows/renovate.yaml index 0bd05d5..b056f5c 100644 --- a/.github/workflows/renovate.yaml +++ b/.github/workflows/renovate.yaml @@ -16,11 +16,12 @@ jobs: env: RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} RENOVATE_PLATFORM: gitea + RENOVATE_ENDPOINT: https://git.farh.net RENOVATE_AUTODISCOVER: "true" LOG_LEVEL: debug run: | npx renovate \ --token="${RENOVATE_TOKEN}" \ --platform=gitea \ - --autodiscover=true \ + --endpoint=https://git.farh.net \ --configurationFile=renovate-config.json \ No newline at end of file