You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ci(audience): use github.event.inputs for selfhosted_only gate (SDK-255)
The previous gate compared inputs.selfhosted_only to the boolean true.
GitHub Actions can deliver workflow_dispatch boolean inputs as a string
('true' / 'false') depending on how the dispatch is invoked, in which
case "string != boolean" is true and the gate fails open.
github.event.inputs.X is always a string regardless of declared type, so
comparing to the string 'true' works reliably whether the input is sent
as JSON boolean, gh CLI -f (string), or gh CLI -F (raw).
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments