Skip to content

Commit 48e1ec5

Browse files
committed
auto3
1 parent da71f60 commit 48e1ec5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/auto-merge-queue.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,13 @@ jobs:
224224
ELAPSED=$((ELAPSED + INTERVAL))
225225
226226
CHECKS_STATUS=$(check_ci_status)
227-
echo "[$ELAPSED/${TIMEOUT}s] CI Status: $CHECKS_STATUS"
227+
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'"
228234
229235
case "$CHECKS_STATUS" in
230236
"SUCCESS")

0 commit comments

Comments
 (0)