Renovate #1188
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 | |
version: | |
description: Renovate version | |
default: latest | |
required: false | |
schedule: | |
- cron: "0 * * * *" # Every hour | |
push: | |
branches: | |
- main | |
- next | |
paths: | |
- ".github/renovate.json5" | |
- ".github/renovate/**.json" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
LOG_LEVEL: "${{ inputs.logLevel || 'debug' }}" | |
RENOVATE_AUTODISCOVER: true | |
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}" | |
RENOVATE_DRY_RUN: "${{ inputs.dryRun == true }}" | |
RENOVATE_PLATFORM: github | |
RENOVATE_PLATFORM_COMMIT: true | |
WORKFLOW_RENOVATE_VERSION: "${{ inputs.version || 'latest' }}" | |
jobs: | |
renovate: | |
name: Renovate | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@v1 | |
id: generate-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: "${{ steps.generate-token.outputs.token }}" | |
- name: Verify Renovate Configuration | |
uses: suzuki-shunsuke/[email protected] | |
- name: Renovate | |
uses: renovatebot/[email protected] | |
with: | |
configurationFile: .github/renovate.json5 | |
token: "x-access-token:${{ steps.generate-token.outputs.token }}" |