From 6bd6fadbb8b41d50ee204ed988c484f9c83a052a Mon Sep 17 00:00:00 2001 From: Pedro Chambino Date: Tue, 13 Feb 2024 13:21:39 +0000 Subject: [PATCH] Empty line between loop runs, easier to understand --- scripts/loop.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/loop.bash b/scripts/loop.bash index 9199f8d..a7f56b6 100755 --- a/scripts/loop.bash +++ b/scripts/loop.bash @@ -199,6 +199,8 @@ echo "Max Queue Time: ${max_time_seconds} seconds." # confidence=0 while true; do + echo # let's keep each loop messages separate by a blank line, easier to understand + # get running jobs, filtered to branch or tag, with pipeline ID update_active_run_data @@ -212,7 +214,6 @@ while true; do confidence=$((confidence+1)) echo "API shows no conflicting jobs/workflows. However it is possible a previous workflow has pending jobs not yet visible in API. To avoid a race condition we will verify out place in queue." echo "Rerunning check ${confidence}/$CONFIDENCE_THRESHOLD" - echo else echo "Front of the line, WooHoo!, Build continuing" break