From 5f9d309188c4f1443833a61077114dc71cfe39ca Mon Sep 17 00:00:00 2001 From: renovate Date: Sat, 21 Feb 2026 13:39:26 +0000 Subject: [PATCH] Add .gitea/workflows/renovate.yaml Signed-off-by: renovate --- .gitea/workflows/renovate.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..ca3f995 --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -0,0 +1,23 @@ +name: renovate + +on: + workflow_dispatch: + branches: + - main + schedule: + - cron: "0 12 * * *" + push: + branches: + - main + +jobs: + renovate: + runs-on: ubuntu-latest + container: ghcr.io/renovatebot/renovate:latest + steps: + - uses: actions/checkout@v4 + - run: renovate + env: + RENOVATE_CONFIG_FILE: ${{ gitea.workspace }}/config.js + LOG_LEVEL: "debug" + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} \ No newline at end of file