Files
renovate-config/.gitea/workflows/renovate.yaml
2025-07-09 11:24:40 +02:00

21 lines
432 B
YAML

name: renovate
on:
schedule:
- cron: "@daily"
push:
branches:
- master
jobs:
renovate:
runs-on: ubuntu-latest
container: ghcr.io/renovatebot/renovate:41
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 }}