Skip to content

renovate

renovate #122

Workflow file for this run

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