renovate-config/.forgejo/workflows/renovate.yaml
Sujiba Bot 64b5f6bef7
All checks were successful
renovate / renovate (push) Successful in 1m18s
chore(deps): update ghcr.io/renovatebot/renovate docker tag to v38.109.0
2024-10-04 06:44:48 +00:00

23 lines
643 B
YAML

name: renovate
on:
schedule:
#- cron: "@hourly"
- cron: "43 */3 * * *"
push:
branches:
- main
jobs:
renovate:
runs-on: docker
container: ghcr.io/renovatebot/renovate:38.109.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 }}