19 lines
537 B
YAML
19 lines
537 B
YAML
name: Renovate
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: "0 */6 * * *"
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # tag=v3.1.0
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@234c0c062fa7a8766864ba0f464a33e4faf687e5 # v34.44.0
|
|
with:
|
|
configurationFile: .github/renovate-config.js
|
|
token: ${{ secrets.BOT_TOKEN }}
|