Skip to content

Renovate

Renovate #2703

Workflow file for this run

---
name: Renovate
on:
workflow_dispatch:
inputs:
dryRun:
description: Dry Run
default: "false"
required: false
logLevel:
description: Log Level
default: debug
required: false
schedule:
- cron: "0 * * * *" # hourly
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
renovate:
uses: mirceanton/reusable-workflows/.github/workflows/renovate.yaml@main
secrets: inherit
with:
dryRun: "${{ inputs.dryRun == true }}"
logLevel: "${{ inputs.logLevel || 'debug' }}"