We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da71f60 commit 48e1ec5Copy full SHA for 48e1ec5
.github/workflows/auto-merge-queue.yml
@@ -224,7 +224,13 @@ jobs:
224
ELAPSED=$((ELAPSED + INTERVAL))
225
226
CHECKS_STATUS=$(check_ci_status)
227
- echo "[$ELAPSED/${TIMEOUT}s] CI Status: $CHECKS_STATUS"
+ echo "[$ELAPSED/${TIMEOUT}s] CI Status: '$CHECKS_STATUS'"
228
+ echo "DEBUG: Status length: ${#CHECKS_STATUS}"
229
+ echo "DEBUG: Status in hex: $(echo -n "$CHECKS_STATUS" | xxd)"
230
+
231
+ # Trim whitespace
232
+ CHECKS_STATUS=$(echo "$CHECKS_STATUS" | xargs)
233
+ echo "DEBUG: Trimmed status: '$CHECKS_STATUS'"
234
235
case "$CHECKS_STATUS" in
236
"SUCCESS")
0 commit comments