From f927d77e616824b6b67f42d88e4ca03f8ab76ed5 Mon Sep 17 00:00:00 2001 From: Jaz White Date: Wed, 19 Aug 2026 14:55:19 -0400 Subject: [PATCH] skip comment logic was backwards --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index f2c8dc5d..dffc8b30 100644 --- a/main.go +++ b/main.go @@ -96,7 +96,7 @@ func main() { Body: &postedComments, } - if !config.SkipComment { + if config.SkipComment { gha.Log("Skipping comment creation as skip-comment is set to true") } else { err = postGithubComment(ctx, flagsRef, config, existingComment, *event.PullRequest.Number, comment)