Files
Charon/.github/workflows/renovate.yml

28 lines
642 B
YAML

name: Renovate
on:
schedule:
- cron: '0 5 * * *' # daily 05:00 EST
workflow_dispatch:
permissions:
contents: write
pull-requests: write
issues: write
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
fetch-depth: 1
- name: Run Renovate
uses: renovatebot/github-action@ea850436a5fe75c0925d583c7a02c60a5865461d # v43.0.20
with:
configurationFile: .github/renovate.json
token: ${{ secrets.PROJECT_TOKEN }}
env:
LOG_LEVEL: info