Skip to content

Renovate

Renovate #90

Workflow file for this run

name: Renovate
on:
push:
paths:
- ".github/workflows/renovate.yaml"
- ".github/renovate-config.js"
schedule:
- cron: "0 7 * * 5"
workflow_dispatch:
env:
ACTIONS_STEP_DEBUG: ${{ secrets.ACTIONS_STEP_DEBUG }}
jobs:
renovate:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
- name: Self-hosted Renovate
uses: renovatebot/github-action@8b7941943a108b2cc2150730963164aa8baeab8c # v44.2.2
with:
configurationFile: ".github/renovate-config.js"
token: "${{ secrets.GITHUB_TOKEN }}"
env:
LOG_LEVEL: ${{ env.ACTIONS_STEP_DEBUG == 'true' && 'debug' || 'info' }}
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_ALLOW_SCRIPTS: true
RENOVATE_SEPARATE_MAJOR_MINOR: false