Skip to content

Renovate

Renovate #74

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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Self-hosted Renovate
uses: renovatebot/github-action@a3c115cd6676c8a5bc72f9715f108759e570daf5 # v43.0.19
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