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
The debug echo inside poll_github() was captured by the command
substitution `conclusion=$(poll_github)`, making `conclusion` a
multi-line string that never matched the `success)` or `failure)`
patterns in the case statement. This caused the action to always
fall through to the `*` wildcard and wait until timeout.
Redirect both debug echo lines to stderr (`>&2`) so only the
actual gh api result is captured in the return value.
0 commit comments