renovate #122
This file contains hidden or 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: | |
| # Hourly — renovate.json no longer has a schedule, so PRs flow anytime. | |
| # Frequent runs also let strict branch protection merge queued PRs one per run. | |
| - cron: "0 * * * *" | |
| workflow_dispatch: | |
| inputs: | |
| logLevel: | |
| description: Renovate log level | |
| default: info | |
| type: choice | |
| options: [debug, info, warn] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: renovate | |
| cancel-in-progress: false | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: renovatebot/github-action@v46.1.15 | |
| with: | |
| token: ${{ secrets.RENOVATE_TOKEN }} | |
| env: | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} | |
| LOG_LEVEL: ${{ inputs.logLevel || 'info' }} |