renovate-config/.forgejo/workflows/renovate.yaml
Sujiba Bot cfedc31c7e
All checks were successful
renovate / renovate (push) Successful in 1m2s
chore(deps): update ghcr.io/renovatebot/renovate docker tag to v40.31.0
2025-05-25 15:44:26 +00:00

26 lines
716 B
YAML

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