.forgejo/workflows/renovate.yaml hinzugefügt

This commit is contained in:
sujiba 2024-05-21 22:11:52 +00:00
parent 637e0cb5cd
commit c658e49dd8

View file

@ -0,0 +1,23 @@
name: renovate
on:
schedule:
- cron: "@hourly"
push:
branches:
- main
jobs:
renovate-dry-run:
runs-on: docker
container: ghcr.io/renovatebot/renovate:37.368.6
steps:
- uses: actions/checkout@v4
- run: renovate
env:
RENOVATE_CONFIG_FILE: "/workspace/homelab/renovate-config/config.json" # replace it with your config.js path
RENOVATE_PLATFORM: gitea
RENOVATE_ENDPOINT: https://git.smail.koeln
LOG_LEVEL: "debug"
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}