Files
config/.gitea/workflows/renovate.yaml
Damien Dassieu 9bceacd7ba
All checks were successful
renovate / renovate (push) Successful in 1m32s
Add API_GITHUB_TOKEN secret to actions
Signed-off-by: Damien Dassieu <dassieu.damien@gmail.com>
2026-02-21 14:39:59 +00:00

24 lines
526 B
YAML

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 }}
GITHUB_COM_TOKEN: ${{ secrets.API_GITHUB_TOKEN }}