Skip to content

Renovate

Renovate #16

Workflow file for this run

name: Renovate
on:
schedule:
# Run every Monday at 2:00 AM
- cron: '0 2 * * 1'
workflow_dispatch: # Allow manual triggering
jobs:
renovate:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
issues: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Self-hosted Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.RENOVATE_TOKEN }}
configurationFile: .renovate.json
env:
LOG_LEVEL: 'info'
RENOVATE_REPOSITORIES: ${{ github.repository }}