renovate-config/.forgejo/workflows/renovate.yaml
sujiba-bot b3f75f292c
All checks were successful
renovate / renovate (push) Successful in 52s
added ssh key for code signing
2025-05-11 20:57:17 +02:00

24 lines
718 B
YAML

name: renovate
on:
schedule:
#- cron: "@hourly"
- cron: "43 */3 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: docker
container: ghcr.io/renovatebot/renovate:40.11.6
steps:
- uses: actions/checkout@v4
- run: renovate
env:
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_GIT_PRIVATE_KEY: ${{ secrets.RENOVATE_GIT_PRIVATE_KEY }}
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }}