Skip to content

Renovate

Renovate #12030

Workflow file for this run

---
# Renovate this repository if Renovate-specific tasks are checked or if dispatched.
name: Renovate
on:
issues:
types: [edited]
pull_request:
types: [edited]
push:
branches-ignore: [main, v0]
workflow_dispatch:
inputs:
log-level:
description: Log level for Renovate
required: false
type: string
default: debug
print-config:
description: Log the fully-resolved Renovate config for each repository, plus fully-resolved presets.
required: false
type: boolean
default: false
workflow_run:
workflows: [CI]
branches: [main]
types: [completed]
permissions:
contents: read
jobs:
renovate:
if: >-
(
github.event_name == 'issues' &&
github.event.action == 'edited' &&
!contains(github.actor, '[bot]')
) ||
(
github.event_name == 'pull_request' &&
github.event.action == 'edited' &&
!contains(github.actor, '[bot]')
) ||
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch' ||
(
github.event_name == 'workflow_run' &&
github.event.workflow_run.conclusion == 'success'
)
name: Renovate
secrets:
APPLICATION_ID: ${{ secrets.APPLICATION_ID }}
APPLICATION_PRIVATE_KEY: ${{ secrets.APPLICATION_PRIVATE_KEY }}
uses: bfra-me/.github/.github/workflows/renovate.yaml@dd02bc5fb90edbe510033b02657ca0e9c32af58f # v4.16.44
with:
log-level: ${{ inputs.log-level || 'debug' }}
print-config: ${{ inputs.print-config || false }}