Skip to content

Renovate

Renovate #1974

Workflow file for this run

name: Renovate
on:
# Run hourly to process dashboard actions (PR schedule controlled by renovate.json)
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@v6
- name: Run Renovate
uses: renovatebot/github-action@v46.1.6
with:
configurationFile: renovate.json
token: ${{ secrets.GITHUB_TOKEN }}
env:
LOG_LEVEL: info
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_DRY_RUN: ${{ inputs.dry_run == true && 'full' || '' }}