Renovate #7
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
| # Managed by copier — changes may be overwritten by `copier update` | |
| name: Renovate | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: "0 3 * * 1" # weekly, Monday at 03:00 UTC | |
| concurrency: | |
| group: ${{ github.workflow }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| renovate: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write # Allow Renovate to create branches | |
| issues: write # Allow Renovate Dependency Dashboard | |
| pull-requests: write # Allow Renovate to create PRs | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - uses: renovatebot/github-action@abd08c7549b2a864af5df4a2e369c43f035a6a9d # v46.1.5 | |
| with: | |
| configurationFile: .github/renovate.json | |
| token: ${{ secrets.RENOVATE_TOKEN }} | |
| env: | |
| RENOVATE_REPOSITORIES: ${{ github.repository }} |