feat: comment "Failed" on force quit

This commit is contained in:
张泊明518370910136 2024-10-01 04:24:58 -04:00
parent d92e8114d8
commit 131fd5af0b
GPG Key ID: CA088E6D9284F870

View File

@ -189,6 +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:
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']}"