Skip to content

Renovate

Renovate #3377

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 * * * *"
push:
branches: ["main"]
paths:
- .github/renovate.json5
- .github/renovate/**.json5
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}"
RENOVATE_DRY_RUN: "${{ inputs.dryRun == true }}"
RENOVATE_PLATFORM: github
RENOVATE_PLATFORM_COMMIT: true
RENOVATE_CONFIG_FILE: .github/renovate.json5
LOG_LEVEL: "${{ inputs.logLevel || 'debug' }}"
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- name: Renovate
uses: renovatebot/[email protected]
with:
configurationFile: "${{ env.RENOVATE_CONFIG_FILE }}"
token: "${{ secrets.RENOVATE_TOKEN }}"