ci: fix retry color (#34094)

* color

* fix

* fix
This commit is contained in:
Maxime Desroches
2024-11-22 20:42:57 -08:00
committed by GitHub
parent 83950c1b36
commit 1bbace7dff

View File

@@ -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