Skip to content

Renovate

Renovate #11007

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Renovate
on:
# Manual Trigger
workflow_dispatch:
inputs:
dry-run:
description: Dry Run
default: false
required: false
type: boolean
log-level:
description: Log Level
default: debug
required: false
type: string
# "Wet" Run every 20 minutes
schedule:
- cron: "*/20 * * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
renovate:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-renovate.yaml@6ed7b667628510c8fd2dedf74f2492c24652dccf # v3.8.0
secrets: inherit
with:
dry-run: "${{ inputs.dry-run == true || github.event_name == 'pull_request' }}"
log-level: "${{ inputs.log-level || 'debug' }}"
config-file: "renovate.json5"