19 lines
542 B
YAML
19 lines
542 B
YAML
name: Renovate
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 */6 * * *"
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@682455a348f97d4a4c15be530e5f0d298b049f3e # tag=v32.201.1
|
|
with:
|
|
configurationFile: .github/renovate-config.js
|
|
token: ${{ secrets.BOT_TOKEN }}
|