Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Renovate

Renovate #202

Workflow file for this run

name: "Renovate"
on:
workflow_dispatch:
inputs:
dryRun:
description: Dry Run
default: "false"
required: false
logLevel:
description: Log Level
default: info
required: false
version:
description: Renovate version
default: latest
required: false
schedule:
- cron: "0 2 * * *"
push:
branches:
- master
paths:
- .github/renovate.json
- .github/renovate/**.json
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
LOG_LEVEL: "${{ inputs.logLevel || 'info' }}"
RENOVATE_AUTODISCOVER: true
RENOVATE_AUTODISCOVER_FILTER: "${{ github.repository }}"
RENOVATE_DRY_RUN: "${{ inputs.dryRun == true }}"
RENOVATE_PLATFORM: github
RENOVATE_PLATFORM_COMMIT: true
RENOVATE_FORK_PROCESSING: enabled
WORKFLOW_RENOVATE_VERSION: "${{ inputs.version || 'latest' }}"
jobs:
renovate:
name: Renovate
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Run Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.RENOVATE_TOKEN }}
configurationFile: .github/renovate.json
renovate-version: "${{ env.WORKFLOW_RENOVATE_VERSION }}"