From cf74d2c0b4b3db72547995bd5543271af547a6db Mon Sep 17 00:00:00 2001 From: Yuriy Davygora Date: Mon, 18 May 2026 09:12:04 +0200 Subject: [PATCH] Creating renovate pipeline --- .gitea/workflows/ci.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/ci.yaml diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml new file mode 100644 index 0000000..a400656 --- /dev/null +++ b/.gitea/workflows/ci.yaml @@ -0,0 +1,20 @@ +name: Renovate + +on: + workflow_dispatch: + schedule: + - cron: '0 2 * * *' + +jobs: + renovate: + runs-on: ubuntu-latest + container: + image: renovate/renovate + steps: + - name: Run Renovate + run: renovate + env: + RENOVATE_PLATFORM: gitea + RENOVATE_ENDPOINT: https://gitea.davygora.duckdns.org/api/v1 + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} + RENOVATE_AUTODISCOVER: true