This repository has been archived by the owner on Jul 8, 2024. It is now read-only.
Schedule - Renovate #17042
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: Schedule - 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 * * * *" | |
push: | |
branches: | |
- main | |
paths: | |
- ".github/renovate.json5" | |
- ".github/renovate/**.json" | |
env: | |
LOG_LEVEL: debug | |
DRY_RUN: false | |
jobs: | |
renovate: | |
name: Renovate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4 | |
- name: Verify Renovate Configuration | |
uses: suzuki-shunsuke/github-action-renovate-config-validator@v1.0.1 | |
- 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 "DRY_RUN=${{ github.event.inputs.dryRun || env.DRY_RUN }}" >> "${GITHUB_ENV}" | |
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "${GITHUB_ENV}" | |
- name: Renovate | |
uses: renovatebot/github-action@v40.0.2 | |
with: | |
configurationFile: .github/renovate.json5 | |
token: "x-access-token:${{ steps.generate-token.outputs.token }}" |