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