From 0f235b016ee45b7c2a87741a8f24f542dddf8479 Mon Sep 17 00:00:00 2001 From: Emma Thorpe Date: Tue, 2 Jun 2026 15:31:01 +0000 Subject: [PATCH] ci: drop self-hosted Renovate workflow Central Renovate with autodiscovery already covers this repo; renovate.json alone configures it. --- .gitea/workflows/renovate.yaml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .gitea/workflows/renovate.yaml diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml deleted file mode 100644 index 8b6dab1..0000000 --- a/.gitea/workflows/renovate.yaml +++ /dev/null @@ -1,31 +0,0 @@ -# Self-hosted Renovate. Gitea has no built-in Renovate, so it runs here on a -# schedule (and on demand). Requires a repo/org secret RENOVATE_TOKEN holding a -# Gitea PAT with read/write on this repository and read on packages. -# If a central Renovate bot already autodiscovers this repo, delete this file; -# renovate.json alone is enough to configure it. -name: Renovate - -on: - schedule: - - cron: "0 4 * * 1" # Mondays 04:00 UTC - workflow_dispatch: - -jobs: - renovate: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Run Renovate - uses: renovatebot/github-action@v40.3.6 - with: - configurationFile: renovate.json - token: ${{ secrets.RENOVATE_TOKEN }} - env: - RENOVATE_PLATFORM: gitea - RENOVATE_ENDPOINT: ${{ env.GITHUB_SERVER_URL }}/api/v1 - RENOVATE_AUTODISCOVER: "false" - RENOVATE_REPOSITORIES: ${{ github.repository }} - RENOVATE_GIT_AUTHOR: "Renovate Bot " - LOG_LEVEL: info