From f542d4e1cdc1ffe0ed0020f6398999ef9fabd682 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Wed, 15 Jul 2026 23:30:50 -0400 Subject: [PATCH] chore(reusable): forward GADFLY_ENDPOINT_NETHERSTORM (hotfix lineage) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mirrors gadfly#22 on main: the var was added after the forwarding list, so netherstorm reviewers failed with 'unknown provider' — the env never crossed the workflow_call boundary. Env-only; image sha-ed9e946 unchanged. Co-Authored-By: Claude Fable 5 --- .gitea/workflows/review-reusable.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/review-reusable.yml b/.gitea/workflows/review-reusable.yml index fe9c4f0..131965f 100644 --- a/.gitea/workflows/review-reusable.yml +++ b/.gitea/workflows/review-reusable.yml @@ -130,6 +130,11 @@ jobs: # ragnaros/qwen3.6-27b in GADFLY_DEFAULT_MODELS. NB: use the un-hyphenated # `llamaswap` provider spelling in the var — the pinned image needs it. GADFLY_ENDPOINT_RAGNAROS: ${{ vars.GADFLY_ENDPOINT_RAGNAROS }} + # netherstorm = the Wan/qwen media box via its llama-swap proxy; user var + # GADFLY_ENDPOINT_NETHERSTORM (e.g. "llamaswap|https://llama-swap.netherstorm..."). + # Without this line the var is silently dropped at the workflow_call boundary + # and every netherstorm/ reviewer dies with 'unknown provider'. + GADFLY_ENDPOINT_NETHERSTORM: ${{ vars.GADFLY_ENDPOINT_NETHERSTORM }} # --- findings telemetry (optional) -------------------------------- GADFLY_FINDINGS_URL: ${{ secrets.GADFLY_FINDINGS_URL }} GADFLY_FINDINGS_TOKEN: ${{ secrets.GADFLY_FINDINGS_TOKEN }}