From 042da8c7e351cff0eb1094672fa08768d83b94d9 Mon Sep 17 00:00:00 2001 From: Rody Davis Date: Fri, 12 Jun 2026 23:01:26 -0700 Subject: [PATCH] ci: configure Renovate Gitea Actions workflow and config --- .gitea/workflows/renovate.yml | 23 +++++++++++++++++++++++ renovate.json | 6 ++++++ 2 files changed, 29 insertions(+) create mode 100644 .gitea/workflows/renovate.yml create mode 100644 renovate.json diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml new file mode 100644 index 0000000..4cd665c --- /dev/null +++ b/.gitea/workflows/renovate.yml @@ -0,0 +1,23 @@ +name: Renovate +on: + schedule: + - cron: "0 * * * *" # Triggers hourly + push: + branches: + - main + workflow_dispatch: # Allows manual triggering from the Gitea UI + +jobs: + renovate: + runs-on: ubuntu-latest + container: + image: ghcr.io/renovatebot/renovate:latest + env: + RENOVATE_PLATFORM: gitea + RENOVATE_ENDPOINT: https://git.rodydavis.dev/api/v1 + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} + RENOVATE_AUTODISCOVER: false + RENOVATE_REPOSITORIES: ${{ github.repository }} + steps: + - name: Run Renovate + run: renovate diff --git a/renovate.json b/renovate.json new file mode 100644 index 0000000..5db72dd --- /dev/null +++ b/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:recommended" + ] +}