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

This commit is contained in:
2025-07-07 13:26:55 +05:30
parent 783ff0f0cb
commit 4ae6ab9625

View File

@@ -0,0 +1,24 @@
name: renovate
on:
workflow_dispatch:
branches:
- main
schedule:
- cron: "0 8,20 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: bookworm-slim
container: ghcr.io/renovatebot/renovate:41.21.0
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}