28 lines
641 B
YAML
28 lines
641 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@0984fb80fc633b17e57f3e8b6c007fe0dc3e0d62 # v40.3.6
|
|
with:
|
|
configurationFile: .github/renovate.json
|
|
token: ${{ secrets.PROJECT_TOKEN }}
|
|
env:
|
|
LOG_LEVEL: info
|