From 4ae6ab9625e73590c6d5c02e63da0ce93bf32e1e Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Mon, 7 Jul 2025 13:26:55 +0530 Subject: [PATCH] Add .gitea/workflows/renovate.yaml --- .gitea/workflows/renovate.yaml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitea/workflows/renovate.yaml diff --git a/.gitea/workflows/renovate.yaml b/.gitea/workflows/renovate.yaml new file mode 100644 index 0000000..54829d8 --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -0,0 +1,24 @@ +name: renovate + +on: + workflow_dispatch: + branches: + - main + schedule: + - cron: "0 8,20 * * *" + push: + branches: + - main + +jobs: + renovate: + runs-on: bookworm-slim + container: ghcr.io/renovatebot/renovate:41.21.0 + steps: + - uses: actions/checkout@v4 + - run: renovate + env: + RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js + LOG_LEVEL: "debug" + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} + GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}