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" + ] +}