From f610e2277362f72aec1be46eab302beb41f9d791 Mon Sep 17 00:00:00 2001 From: Konstantin Fickel Date: Sun, 12 Oct 2025 11:27:11 +0200 Subject: [PATCH] ci: add renovate Signed-off-by: Konstantin Fickel --- .forgejo/workflows/renovate.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .forgejo/workflows/renovate.yml diff --git a/.forgejo/workflows/renovate.yml b/.forgejo/workflows/renovate.yml new file mode 100644 index 0000000..d9eab60 --- /dev/null +++ b/.forgejo/workflows/renovate.yml @@ -0,0 +1,19 @@ +name: Renovate +on: + workflow_dispatch: + schedule: + - cron: "45 1 * * 5" + +jobs: + renovate: + runs-on: ubuntu-latest + steps: + - name: Check out Repository + uses: https://git.konstantinfickel.de/actions/checkout@v4 + + - name: Self-hosted Renovate + uses: https://git.konstantinfickel.de/actions/renovate-action@v43.0.16 + with: + docker-cmd-file: .github/renovate-entrypoint.sh + docker-user: root + token: ${{ secrets.RENOVATE_TOKEN }}