Skip to content

Renovate

Renovate #21

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@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Self-hosted Renovate
uses: renovatebot/github-action@8ac70de2fe55752c573155866e30735411e3b61c # v41.0.22
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