From d879fd59e5c9935eaa521384bb44eb78486830cb Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Fri, 8 Sep 2023 07:59:27 -0400 Subject: [PATCH] Fix GitHub Action log title reporting Follow-up to #13068 --- regression-tests/recursor-test | 2 +- regression-tests/runtests | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/regression-tests/recursor-test b/regression-tests/recursor-test index ce4d41b716..ec58cfe90b 100755 --- a/regression-tests/recursor-test +++ b/regression-tests/recursor-test @@ -90,7 +90,7 @@ then echo recursor-bulktest >> passed_tests RETVAL=0 else - echo "::error ::title=Recursor-bulktest::Bulk test failed: less than ${THRESHOLD}% of queries answered successfully" + echo "::error title=Recursor-bulktest::Bulk test failed: less than ${THRESHOLD}% of queries answered successfully" echo recursor-bulktest >> failed_tests RETVAL=1 fi diff --git a/regression-tests/runtests b/regression-tests/runtests index 6ebf474edb..162d15f0d4 100755 --- a/regression-tests/runtests +++ b/regression-tests/runtests @@ -147,7 +147,7 @@ do done if [ $failed -gt 0 ]; then - echo -n "::error ::title=Regression-tests::Tests failed. " + echo -n "::error title=Regression-tests::Tests failed. " fi echo -n $passed out of $[$passed+$failed] echo -n " (" -- 2.47.2