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
fix: handle null remote_servers in GitHub workflow
The workflow was failing when there are no remote servers because
the remote_servers field is null in the JSON output. The jq commands
were trying to iterate over null with [] which causes 'Cannot iterate
over null' errors.
Fixed by using (.remote_servers // {})[] pattern which provides an
empty object fallback when remote_servers is null, allowing safe
iteration.
0 commit comments