From 7cbd9f5c085b62a182a1590802a29ee2fa55acd8 Mon Sep 17 00:00:00 2001 From: Renovate Date: Fri, 13 Feb 2026 13:00:55 +0000 Subject: [PATCH] Add .gitea/workflows/renovate.yml --- .gitea/workflows/renovate.yml | 47 +++++++++++++++++++++++++++++++++++ 1 file changed, 47 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 0000000..c38f553 --- /dev/null +++ b/.gitea/workflows/renovate.yml @@ -0,0 +1,47 @@ +name: renovate + +on: + workflow_dispatch: + schedule: + - cron: "@hourly" + push: + +jobs: + renovate: + runs-on: docker + # Pin to a specific Renovate version for stability (check ghcr.io for latest) + # Example: ghcr.io/renovatebot/renovate:37.250.0 + container: ghcr.io/renovatebot/renovate:43 # Pinned version + + steps: + # Checkout the repository containing config.js + - name: Checkout + uses: actions/checkout@v6 + + # Cache Renovate's dependency cache directory between runs + - name: Cache Renovate dependencies + uses: actions/cache@v5 + with: + path: /tmp/renovate-cache # Renovate's default cache directory + # Key based on OS, config file hash, and run ID (ensures save) + key: ${{ runner.os }}-renovate-${{ hashFiles('config.js') }}-${{ github.run_id }} + # Fallback keys for restoring from previous runs + restore-keys: | + ${{ runner.os }}-renovate-${{ hashFiles('config.js') }}- + ${{ runner.os }}-renovate- + + # Run Renovate using the configuration file + - name: Run Renovate + run: renovate + env: + # --- Core Configuration --- + RENOVATE_CONFIG_FILE: "config.js" # Path to your config file + RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }} # Token for Gitea + # GITHUB_COM_TOKEN: ${{ secrets.GH_TOKEN }} # Only needed if Renovate MUST access github.com (e.g., for release notes). Remove if not needed. + RENOVATE_GIT_PRIVATE_KEY: ${{ secrets.RENOVATE_GPG_SECRET_KEY }} + RENOVATE_GIT_AUTHOR: "Renovate Bot " + # --- Performance & Logging --- + # Use 'info' for normal runs, 'debug' only when troubleshooting + LOG_LEVEL: "info" + # Explicitly tell Renovate where the cache is (matches actions/cache path) + RENOVATE_CACHE_DIR: /tmp/renovate-cache