Skip to content

deps(actions): Update mirceanton/reusable-workflows ( → ) #215

deps(actions): Update mirceanton/reusable-workflows ( → )

deps(actions): Update mirceanton/reusable-workflows ( → ) #215

Workflow file for this run

---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Renovate
on:
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
pull_request:
paths:
- ".github/workflows/renovate.yaml"
- ".github/configs/renovate/*.json5"
- "renovate.json5"
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@5134e22703201af6c02b0b029e37b2a59b95ca0c
secrets: inherit
with:
dry-run: "${{ inputs.dry-run == true || github.event_name == 'pull_request' }}"
log-level: "${{ inputs.log-level || 'debug' }}"