19 lines
533 B
YAML
19 lines
533 B
YAML
name: Renovate
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 */6 * * *"
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3.2.0
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@d4496c2d9b06c4e43b227fc3f331a434e99eaef5 # v34.73.3
|
|
with:
|
|
configurationFile: .github/renovate-config.js
|
|
token: ${{ secrets.BOT_TOKEN }}
|