482151e97d
All checks were successful
renovate / renovate (push) Successful in 54s
revert change cron trigger to daily (15 8 * * *) Seems @hourly was working fine
21 lines
490 B
YAML
21 lines
490 B
YAML
name: renovate
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "@hourly"
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
container: ghcr.io/renovatebot/renovate:latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: renovate
|
|
env:
|
|
RENOVATE_CONFIG_FILE: "/workspace/renovate-bot/renovate-config/config.js"
|
|
LOG_LEVEL: "debug"
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
GITHUB_COM_TOKEN: ${{ secrets.GH_COM_TOKEN }} |