From bd0ace3ac4142ab3313e9c938121186dfdc15a52 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sun, 12 Apr 2026 03:15:02 +0100 Subject: [PATCH] Make sure we still update the comment with if there was no change in test status --- .github/workflows/GnuComment.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/GnuComment.yml b/.github/workflows/GnuComment.yml index 8c9b51f1b..3dc2a46d9 100644 --- a/.github/workflows/GnuComment.yml +++ b/.github/workflows/GnuComment.yml @@ -53,10 +53,6 @@ jobs: const issue_number = Number(fs.readFileSync('./NR')); const content = fs.readFileSync('./result.txt').toString(); - if (content.trim().length <= 7) { // 7 because we have backquote + \n - return; - } - const marker = ''; const body = `${marker}\nGNU testsuite comparison:\n\`\`\`\n${content}\n\`\`\``; @@ -77,6 +73,9 @@ jobs: body }); } else { + if (content.trim().length <= 7) { // 7 because we have backquote + \n + return; + } await github.rest.issues.createComment({ ...context.repo, issue_number,