From a53536256b20353fd6db239c83ead279a3c75119 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..93c4ecf --- /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://your-gitea/api/v1 + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} + RENOVATE_AUTODISCOVER: true