Renovate #271
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
# yamllint disable rule:comments | |
--- | |
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json | |
name: "Renovate" | |
'on': | |
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: | |
- master | |
paths: | |
- .github/renovate.json5 | |
- .github/renovate/**.json5 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.number || github.ref }} | |
cancel-in-progress: true | |
# Retrieve BOT_USER_ID via `curl -s "https://api.github.com/users/${BOT_USERNAME}%5Bbot%5D" | jq .id` | |
env: | |
RENOVATE_PLATFORM: github | |
RENOVATE_PLATFORM_COMMIT: true | |
RENOVATE_ONBOARDING_CONFIG_FILE_NAME: .github/renovate.json5 | |
RENOVATE_AUTODISCOVER: true | |
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}" | |
RENOVATE_USERNAME: "${{ secrets.BOT_USERNAME }}[bot]" | |
RENOVATE_GIT_AUTHOR: >- | |
${{ secrets.BOT_USERNAME }} | |
<${{ secrets.BOT_USER_ID }}+${{ secrets.BOT_USERNAME }}[bot]@users.noreply.github.com> | |
WORKFLOW_RENOVATE_DRY_RUN: false | |
WORKFLOW_RENOVATE_LOG_LEVEL: debug | |
WORKFLOW_RENOVATE_VERSION: latest | |
jobs: | |
renovate: | |
name: Renovate | |
runs-on: ubuntu-latest | |
steps: | |
- name: Generate Token | |
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1 | |
id: app-token | |
with: | |
app-id: "${{ secrets.BOT_APP_ID }}" | |
private-key: "${{ secrets.BOT_APP_PRIVATE_KEY }}" | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
token: "${{ steps.app-token.outputs.token }}" | |
- name: Override Default Config | |
shell: bash | |
run: | | |
echo "RENOVATE_DRY_RUN=${{ github.event.inputs.dryRun || env.WORKFLOW_RENOVATE_DRY_RUN }}" >> "${GITHUB_ENV}" | |
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.WORKFLOW_RENOVATE_LOG_LEVEL }}" >> "${GITHUB_ENV}" | |
- name: Renovate | |
uses: renovatebot/github-action@28bcd5c4900a4353b5c9af9e1bd61dd6377f0f0d # v40.3.5 | |
with: | |
configurationFile: "${{ env.RENOVATE_ONBOARDING_CONFIG_FILE_NAME }}" | |
token: "${{ steps.app-token.outputs.token }}" | |
renovate-version: "${{ github.event.inputs.version || env.WORKFLOW_RENOVATE_VERSION }}" | |
# yamllint enable rule:comments |