From d7c37b9673319918c1e59e0cfbfb5025f4f05129 Mon Sep 17 00:00:00 2001 From: Jakob Jensen Date: Sun, 4 Jan 2026 21:16:35 +0100 Subject: [PATCH] fix: use valid flags when updating a comment --- src/main.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.sh b/src/main.sh index f897de7..e6eb63a 100644 --- a/src/main.sh +++ b/src/main.sh @@ -35,7 +35,7 @@ create) echo "Issue already exists (#${ISSUE_NUMBER}), updating instead." if [ -n "${COMMENT}" ]; then echo "Adding comment to existing issue..." - gh issue comment "${ISSUE_NUMBER}" --repo "${REPO}" --body "${COMMENT}" --edit-last --create-if-none --yes + gh issue comment "${ISSUE_NUMBER}" --repo "${REPO}" --body "${COMMENT}" --edit-last --create-if-none else echo "Updating issue body..." gh issue edit "${ISSUE_NUMBER}" --repo "${REPO}" --title "${TITLE}" --body "${BODY}"