From aa4a04a9ab40a7ed6f637ff5ef023c49567f84ac Mon Sep 17 00:00:00 2001 From: Alexander Tarasov Date: Fri, 14 Aug 2026 17:07:24 +0200 Subject: [PATCH] ci(warden): Pass Warden Service URL and token to the review job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Expose the org-wide WARDEN_SERVICE_URL variable and WARDEN_SERVICE_TOKEN secret to the Warden job so the action can reach Warden Service. The URL comes from the `vars` context rather than `env`, since org and repository variables are only available through `vars` — reading it from `env` would self-reference the job's own env block and resolve to an empty string. Co-Authored-By: Claude --- .github/workflows/warden.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/warden.yml b/.github/workflows/warden.yml index 7c9491a..8eb2b2c 100644 --- a/.github/workflows/warden.yml +++ b/.github/workflows/warden.yml @@ -16,6 +16,8 @@ jobs: WARDEN_OPENROUTER_API_KEY: ${{ secrets.WARDEN_OPENROUTER_API_KEY }} WARDEN_MODEL: ${{ secrets.WARDEN_MODEL }} WARDEN_SENTRY_DSN: ${{ secrets.WARDEN_SENTRY_DSN }} + WARDEN_SERVICE_URL: ${{ vars.WARDEN_SERVICE_URL }} + WARDEN_SERVICE_TOKEN: ${{ secrets.WARDEN_SERVICE_TOKEN }} steps: - name: Check Warden credentials env: