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

Signed-off-by: renovate <bot@renovate.org>
This commit is contained in:
2026-02-21 13:39:26 +00:00
parent 9bb727f6df
commit 5f9d309188

View File

@@ -0,0 +1,23 @@
name: renovate
on:
workflow_dispatch:
branches:
- main
schedule:
- cron: "0 12 * * *"
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: ${{ gitea.workspace }}/config.js
LOG_LEVEL: "debug"
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}