Skip to content

Commit

Permalink
chore: make github output prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
danistrebel committed Dec 20, 2024
1 parent 3b93916 commit 112238f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/pipeline-runner/github-api.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

buildresult=$(cat)

REPORT_ROWS=$(echo "$buildresult" | awk -F";" '$0="|"$1"|"$2"|"$3"|"' OFS="|")
REPORT_ROWS=$(echo "$buildresult" | awk -F";" '$2 = ($2 == "fail" ? "❌" : "✅") ; $0="|"$1"|"$2"|"$3"|"' OFS="|")
REPORT=$(cat <<EOF
### Pipeline Report
Expand Down

0 comments on commit 112238f

Please sign in to comment.