renovate-config/.forgejo/workflows/renovate.yaml

27 lines
716 B
YAML
Raw Normal View History

name: renovate
on:
schedule:
#- cron: "@hourly"
- cron: "43 */3 * * *"
push:
branches:
- main
2025-05-11 21:11:23 +02:00
env:
RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.RENOVATE_GIT_PRIVATE_KEY }}
jobs:
renovate:
runs-on: docker
container: ghcr.io/renovatebot/renovate:41.28.1
steps:
- uses: actions/checkout@v4
- run: renovate
env:
2024-05-27 15:43:23 +02:00
RENOVATE_CONFIG_FILE: "/workspace/homelab/renovate-config/config.js" # replace it with your config.js path
LOG_LEVEL: "debug"
RENOVATE_CONFIG_MIGRATION: "true" # ensure all repositories receive config migration PRs
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
2024-05-27 15:43:23 +02:00
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}