diff --git a/joint_teapot/utils/joj3.py b/joint_teapot/utils/joj3.py
index 921bd31..645eec5 100644
--- a/joint_teapot/utils/joj3.py
+++ b/joint_teapot/utils/joj3.py
@@ -189,6 +189,9 @@ def generate_title_and_comment(
     comment = f"Generated by [Gitea Actions #{run_number}]({action_link})\n"
     for stage in stages:
         comment += f"## {stage['name']}"
+        if stage["force_quit"] == True:
+            comment += " - Failed"
+            continue
         single_case = len(stage["results"]) == 1
         if single_case:
             comment += f" - Score: {stage['results'][0]['score']}"