From e3dba20f6675708347c9c379c2380267e1cc45a6 Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Tue, 24 Feb 2026 14:24:54 +0100 Subject: [PATCH] fix check --- .claude/skills/triage-issue/scripts/post_linear_comment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/skills/triage-issue/scripts/post_linear_comment.py b/.claude/skills/triage-issue/scripts/post_linear_comment.py index 3522ba0170be..c752676f35a2 100644 --- a/.claude/skills/triage-issue/scripts/post_linear_comment.py +++ b/.claude/skills/triage-issue/scripts/post_linear_comment.py @@ -84,7 +84,7 @@ def graphql(token, query, variables=None): ) comments = data.get("data", {}).get("issue", {}).get("comments", {}).get("nodes", []) for c in comments: - if c.get("body", "").startswith("## Automated Triage Report"): + if c.get("body", "").startswith("## Issue Triage:"): print(f"Triage comment already exists on {identifier}, skipping") sys.exit(0)