From 22f30051d24b3750ac025da6747ed08ba065c458 Mon Sep 17 00:00:00 2001 From: "Trez.One" Date: Sun, 21 Sep 2025 16:49:18 -0400 Subject: [PATCH] Adding Renovate workflow. --- .gitea/workflows/renovate.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .gitea/workflows/renovate.yml diff --git a/.gitea/workflows/renovate.yml b/.gitea/workflows/renovate.yml new file mode 100644 index 00000000..da998044 --- /dev/null +++ b/.gitea/workflows/renovate.yml @@ -0,0 +1,26 @@ +name: Renovate + +on: + schedule: + - cron: '0/30 * * * *' + workflow_dispatch: + +jobs: + renovate: + runs-on: ubuntu-latest + timeout-minutes: 5 + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup node + uses: actions/setup-node@v4 + + - name: Renovate + uses: renovatebot/github-action@v43.0.11 + with: + configurationFile: renovate.json + renovate-version: 41.97.7-full + token: ${{ secrets.RENOVATE_TOKEN }} + env: + LOG_LEVEL: debug \ No newline at end of file