From 1bbace7dfff9c38b9abc31be498675bbb869f535 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Fri, 22 Nov 2024 20:42:57 -0800 Subject: [PATCH] ci: fix retry color (#34094) * color * fix * fix --- .github/workflows/setup/action.yaml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/setup/action.yaml b/.github/workflows/setup/action.yaml index 935db341542b43..818060c3b010cc 100644 --- a/.github/workflows/setup/action.yaml +++ b/.github/workflows/setup/action.yaml @@ -20,11 +20,9 @@ runs: name: No retries! run: | if [ "${{ github.run_attempt }}" -gt 1 ]; then - echo -e "\033[31m" - echo "##################################################" - echo " Retries not allowed! Fix the flaky test! " - echo "##################################################" - echo -e "\033[0m" + echo -e "\033[0;31m##################################################" + echo -e "\033[0;31m Retries not allowed! Fix the flaky test! " + echo -e "\033[0;31m##################################################\033[0m" exit 1 fi