From b4ee4c2194c94950a7a3ad33ea38e73551b443c9 Mon Sep 17 00:00:00 2001 From: Mathieu Di-Majo Date: Thu, 12 Mar 2026 20:32:04 +0100 Subject: [PATCH] fix: issue when create action runs with an existing comment --- src/github.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/github.ts b/src/github.ts index 960513e..9ec2959 100644 --- a/src/github.ts +++ b/src/github.ts @@ -38,7 +38,7 @@ export async function findExistingComment(selector: string) { return [comment]; } - return data; + return []; }, );