17 lines
405 B
YAML
17 lines
405 B
YAML
name: renovate
|
|
on:
|
|
schedule:
|
|
- cron: '0 5 * * *' # every day at 5
|
|
workflow_dispatch:
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4.1.1
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@v40.0.2
|
|
with:
|
|
configurationFile: .github/renovate.json
|
|
token: ${{ secrets.RENOVATE_TOKEN }}
|