Renovate #8004
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Renovate | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
inputs: | |
dryRun: | |
description: "Dry-Run" | |
default: "false" | |
required: false | |
logLevel: | |
description: "Log-Level" | |
default: "debug" | |
required: false | |
schedule: | |
- cron: "0 */4 * * *" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/renovate.json5" | |
- ".github/renovate/**.json5" | |
env: | |
LOG_LEVEL: debug | |
RENOVATE_DRY_RUN: false | |
RENOVATE_CONFIG_FILE: .github/renovate.json5 | |
jobs: | |
renovate: | |
name: Renovate | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Generate Token | |
uses: tibdex/github-app-token@v2 | |
id: generate-token | |
with: | |
app_id: ${{ secrets.BOT_APP_ID }} | |
private_key: ${{ secrets.BOT_APP_PRIVATE_KEY }} | |
- name: Override default config from dispatch variables | |
run: | | |
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.RENOVATE_DRY_RUN }}" >> $GITHUB_OUTPUT | |
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> $GITHUB_OUTPUT | |
- name: Renovate | |
uses: renovatebot/[email protected] | |
with: | |
configurationFile: ${{ env.RENOVATE_CONFIG_FILE }} | |
token: ${{ steps.generate-token.outputs.token }} |