We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ca0e17 commit 38139d9Copy full SHA for 38139d9
scripts/gha/summarize_test_results.py
@@ -205,7 +205,9 @@ def print_log(log_results):
205
def print_github_log(log_results):
206
"""Print a text log, but replace newlines with %0A and add
207
the GitHub ::error text."""
208
- output_lines = [LOG_HEADER, ""] + print_log(log_results)
+ output_lines = [LOG_HEADER,
209
+ "".ljust(len(LOG_HEADER), "—"),
210
+ ""] + print_log(log_results)
211
# "%0A" produces a newline in GitHub workflow logs.
212
return ["::error ::%s" % "%0A".join(output_lines)]
213
0 commit comments