Skip to content

Renovate

Renovate #37

Workflow file for this run

name: Renovate
on:
schedule:
# Runs every day at 4:00 AM UTC (Adjust to your timezone)
- cron: '0 0 * * *'
workflow_dispatch: # Allows you to trigger it manually from the Actions tab
permissions:
contents: write
pull-requests: write
issues: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/[email protected]
- name: Run Renovate
uses: renovatebot/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
env:
RENOVATE_REPOSITORIES: ${{ github.repository }}
LOG_LEVEL: "debug"