From 6b67dd19d82fadf3575f0c2c54af1aeda4685353 Mon Sep 17 00:00:00 2001 From: Al Bowles Date: Sun, 14 Nov 2021 20:44:00 -0600 Subject: [PATCH] Include BUILD_NAME in report header --- build-report.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-report.sh b/build-report.sh index b40e5059..b8f6c77d 100755 --- a/build-report.sh +++ b/build-report.sh @@ -3,7 +3,7 @@ set -e BUILD_NAME=$1 -printf 'Test | Result\n=============\n' +printf '# %s\nTest | Result\n=============\n' "$BUILD_NAME" openqa-cli api -X GET jobs build="$BUILD_NAME" | \ jq -r '.jobs[] | {name,result} | join(" | ") | split("-") | last' | \ sort