32 lines
748 B
YAML
32 lines
748 B
YAML
name: Renovate
|
|
on:
|
|
schedule:
|
|
# Run every 6 hours
|
|
- cron: '0 */6 * * *'
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- '.github/renovate.json5'
|
|
- '.github/workflows/renovate.yml'
|
|
|
|
jobs:
|
|
renovate:
|
|
name: Run Renovate
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
|
|
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@b9486682a19fe4ea2dd1263c11b4e0c1fe1838fe # v40.3.2
|
|
with:
|
|
configurationFile: .github/renovate.json5
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
env:
|
|
LOG_LEVEL: 'debug'
|