From a0567909c5dfa8a7e11b3dca85d483338dea36a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20B=C3=BChner?= Date: Fri, 9 Feb 2024 13:57:29 +0100 Subject: [PATCH] feat: add renovate bot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Andreas Schmitz Co-authored-by: André Henn --- .github/renovate.json | 6 ++++++ .github/workflows/renovate.yml | 16 ++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 .github/renovate.json create mode 100644 .github/workflows/renovate.yml diff --git a/.github/renovate.json b/.github/renovate.json new file mode 100644 index 0000000..8844024 --- /dev/null +++ b/.github/renovate.json @@ -0,0 +1,6 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:best-practices" + ] +} diff --git a/.github/workflows/renovate.yml b/.github/workflows/renovate.yml new file mode 100644 index 0000000..a8f0355 --- /dev/null +++ b/.github/workflows/renovate.yml @@ -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 }}