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): scope fork check to pull_request event so gate works on workflow_dispatch (SDK-255)
GHA expressions treat null == false as true, so on workflow_dispatch
(where github.event.pull_request is null) the first branch of the OR
gate evaluated true regardless of the selfhosted_only input. The flag
had no effect.
Wrapping the fork check in a github.event_name == 'pull_request' guard
makes that branch only run on PR events, leaving the workflow_dispatch
branch as the sole gate when the workflow is triggered manually.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
0 commit comments