Skip to content

Renovate

Renovate #7

Workflow file for this run

# 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 }}