Skip to content

Renovate

Renovate #107

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
# Scheduled hourly
schedule:
- cron: "0 * * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
renovate:
uses: mirceanton/reusable-workflows/.github/workflows/reusable-renovate.yaml@c60bb9813e634b15663d4ff01027e3b32102aef4 # v3.7.2
secrets: inherit
with:
dry-run: "${{ inputs.dry-run == true || github.event_name == 'pull_request' }}"
log-level: "${{ inputs.log-level || 'debug' }}"
config-file: .github/configs/renovate.json