Skip to content

Renovate

Renovate #341

Workflow file for this run

name: Renovate
on:
# Run every hour
schedule:
- cron: '0 * * * *'
# Allow manual trigger
workflow_dispatch:
inputs:
dry_run:
description: 'Run in dry-run mode (no PRs created)'
required: false
default: 'false'
type: boolean
permissions:
contents: write
issues: write
pull-requests: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run Renovate
uses: renovatebot/github-action@v41.0.21
with:
configurationFile: renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
env:
LOG_LEVEL: info
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_DRY_RUN: ${{ inputs.dry_run == true && 'full' || '' }}