Renovate #978
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: | |
# For manual dispatch | |
workflow_dispatch: | |
inputs: | |
dryRun: | |
description: Dry-Run | |
default: "false" | |
required: false | |
logLevel: | |
description: Log-Level | |
default: debug | |
required: false | |
# For auto-merge - should exclude non-renovate branch dispatches in job definitions below | |
workflow_run: | |
workflows: | |
- CI | |
types: | |
- completed | |
schedule: | |
# 5 a.m. in JST(+9) | |
- cron: "0 20 * * *" | |
# For auto-merge and rebasing | |
push: | |
branches: ["master"] | |
env: | |
LOG_LEVEL: debug | |
RENOVATE_DRY_RUN: false | |
RENOVATE_CONFIG_FILE: .github/renovate-bot.json5 | |
jobs: | |
renovate: | |
name: Renovate | |
runs-on: ubuntu-latest | |
# Exclude dispatch from non-renovate checks | |
if: ${{ !(github.event_name == 'workflow_run' && !startsWith(github.event.workflow_run.head_branch, 'renovate/')) }} | |
steps: | |
- name: Generate a token | |
id: generate-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ secrets.RENOVATE_APP_ID }} | |
private-key: ${{ secrets.RENOVATE_APP_PRIVATE_KEY }} | |
- uses: actions/checkout@v4 | |
- name: Override default config from dispatch variables | |
shell: bash | |
run: | | |
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.RENOVATE_DRY_RUN }}" >> "${GITHUB_ENV}" | |
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "${GITHUB_ENV}" | |
- name: Renovate | |
uses: renovatebot/github-action@v40.3.5 | |
with: | |
renovate-image: "ghcr.io/renovatebot/renovate" | |
renovate-version: "latest" | |
configurationFile: "${{ env.RENOVATE_CONFIG_FILE }}" | |
token: "${{ steps.generate-token.outputs.token }}" |