feat: leave comment on force quit
This commit is contained in:
parent
131fd5af0b
commit
bc6d85811d
|
@ -189,9 +189,9 @@ def generate_title_and_comment(
|
||||||
comment = f"Generated by [Gitea Actions #{run_number}]({action_link})\n"
|
comment = f"Generated by [Gitea Actions #{run_number}]({action_link})\n"
|
||||||
for stage in stages:
|
for stage in stages:
|
||||||
comment += f"## {stage['name']}"
|
comment += f"## {stage['name']}"
|
||||||
if stage["force_quit"] == True:
|
force_quit = stage["force_quit"]
|
||||||
|
if force_quit:
|
||||||
comment += " - Failed"
|
comment += " - Failed"
|
||||||
continue
|
|
||||||
single_case = len(stage["results"]) == 1
|
single_case = len(stage["results"]) == 1
|
||||||
if single_case:
|
if single_case:
|
||||||
comment += f" - Score: {stage['results'][0]['score']}"
|
comment += f" - Score: {stage['results'][0]['score']}"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user