feat: add renovate bot

Co-authored-by: Andreas Schmitz <schmitz@terrestris.de>
Co-authored-by: André Henn <henn@terrestris.de>
pull/48/head
Nils Bühner 2024-02-09 13:57:29 +01:00
parent 3727938ec0
commit a0567909c5
2 changed files with 22 additions and 0 deletions

6
.github/renovate.json vendored 100644
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:best-practices"
]
}

16
.github/workflows/renovate.yml vendored 100644
View File

@ -0,0 +1,16 @@
name: renovate
on:
schedule:
- cron: '0 5 * * *' # every day at 5
workflow_dispatch:
jobs:
renovate:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.1.1
- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.0.2
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}