renovate #88
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: renovate | |
on: | |
schedule: | |
- cron: '10 5 * * 1' # Run on Monday mornings at 5am | |
jobs: | |
renovate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Self-hosted Renovate | |
uses: renovatebot/[email protected] | |
with: | |
token: ${{ secrets.RENOVATE_TOKEN }} | |
configurationFile: .github/renovate-bot-config.json | |
env: | |
LOG_LEVEL: 'debug' |