Fix wait-for-hydra: redirect debug echo to stderr
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.