Files
pipelines/.github/workflows/renovate.yaml
2026-03-20 18:32:33 +01:00

19 lines
454 B
YAML

name: Renovate
on:
schedule:
- cron: "0 3 * * *" # täglich um 3 Uhr nachts
workflow_dispatch: # auch manuell triggerbar
jobs:
renovate:
runs-on: ubuntu-latest
container:
image: ghcr.io/renovatebot/renovate:latest
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: renovate.js
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
LOG_LEVEL: info