File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
redis_benchmarks_specification/__common__ Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -21,6 +21,8 @@ def generate_build_started_pr_comment(
21
21
)
22
22
comment_body += f"Started building at { build_datetime } \n "
23
23
comment_body += "You can check each build/benchmark progress in grafana:\n "
24
+ if not isinstance (git_hash , str ):
25
+ git_hash = git_hash .decode ()
24
26
comment_body += f" - git hash: { git_hash } \n "
25
27
comment_body += f" - git branch: { git_branch } \n "
26
28
comment_body += f" - commit date and time: { commit_datetime } \n "
@@ -57,6 +59,8 @@ def generate_build_finished_pr_comment(
57
59
)
58
60
comment_body += f"Started building at { build_start_datetime } and took { build_duration_seconds } seconds.\n "
59
61
comment_body += "You can check each build/benchmark progress in grafana:\n "
62
+ if not isinstance (git_hash , str ):
63
+ git_hash = git_hash .decode ()
60
64
comment_body += f" - git hash: { git_hash } \n "
61
65
comment_body += f" - git branch: { git_branch } \n "
62
66
comment_body += f" - commit date and time: { commit_datetime } \n "
You can’t perform that action at this time.
0 commit comments