From db9eff9c0b50b4a339c7bf501525366665096b86 Mon Sep 17 00:00:00 2001 From: RenovateBot Date: Sat, 14 Mar 2026 16:22:24 +0100 Subject: [PATCH] Add .gitea/workflows/renovate.yaml --- .gitea/workflows/renovate.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..3d652cc --- /dev/null +++ b/.gitea/workflows/renovate.yaml @@ -0,0 +1,22 @@ +name: renovate +on: + schedule: + - cron: "@daily" + push: + branches: + - main +jobs: + renovate: + runs-on: ubuntu-latest + container: ghcr.io/renovatebot/renovate:37.20.2 + env: + RENOVATE_CONFIG_FILE_URL: "https://git.hirschfeld.dev/RenovateBot/renovate-config/raw/branch/main/config.js" + RENOVATE_CONFIG_FILE: "/tmp/renovate-config.js" + RENOVATE_PLATFORM: "gitea" + RENOVATE_ENDPOINT: "https://git.hirschfeld.dev" + LOG_LEVEL: "debug" + RENOVATE_TOKEN: ${{ vars.RENOVATE_TOKEN }} + steps: + - uses: actions/checkout@v4 + - run: curl -o /tmp/renovate-config.js $RENOVATE_CONFIG_FILE_URL + - run: renovate \ No newline at end of file