![small-hack-renovate[bot]](/assets/img/avatar_default.png)
Co-authored-by: small-hack-renovate[bot] <151926327+small-hack-renovate[bot]@users.noreply.github.com>
33 lines
810 B
YAML
33 lines
810 B
YAML
name: Renovate
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# This should be every hour
|
|
- cron: '55 * * * *'
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ".github/renovate-config.json"
|
|
- ".github/workflows/renovate.yml"
|
|
- "renovate.json"
|
|
- "scripts/**"
|
|
jobs:
|
|
renovate:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Get token
|
|
id: app-token
|
|
uses: actions/create-github-app-token@v2
|
|
with:
|
|
private-key: ${{ secrets.PRIVATE_KEY }}
|
|
app-id: ${{ secrets.APP_ID }}
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v5.0.0
|
|
|
|
- name: Self-hosted Renovate
|
|
uses: renovatebot/github-action@v43.0.14
|
|
with:
|
|
token: '${{ steps.app-token.outputs.token }}'
|
|
configurationFile: .github/renovate-config.json
|