chore(reusable): forward GADFLY_ENDPOINT_NETHERSTORM
Gadfly review (reusable) / review (pull_request) Successful in 0s
Adversarial Review (Gadfly) / review (pull_request) Successful in 0s
Build & push image / build-and-push (pull_request) Successful in 26s

A reusable workflow can't enumerate arbitrary vars.GADFLY_ENDPOINT_*;
the netherstorm endpoint var was added after the forwarding list, so
every netherstorm/<model> reviewer failed with 'unknown provider:
netherstorm' — the correctly-formatted var never reached the container.

Co-Authored-By: Claude Fable 5 <[email protected]>
This commit is contained in:
2026-07-15 23:30:17 -04:00
co-authored by Claude Fable 5
parent 256344d3e1
commit 4ff63d988a
+5
View File
@@ -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/<model> 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 }}