Add .gitea/workflows/renovate.yaml
All checks were successful
renovate / renovate (push) Successful in 34s

This commit is contained in:
2025-11-25 07:19:25 +00:00
parent 7409d29906
commit ab135d98a4

View File

@@ -0,0 +1,20 @@
name: renovate
on:
schedule:
- cron: "@weekly"
push:
branches:
- main
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:latest
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/renovate-bot/renovate-config/config.js"
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}