From 0d35d36b52f08ae0c36328a40c649f405d6d7103 Mon Sep 17 00:00:00 2001 From: xtqqczze <45661989+xtqqczze@users.noreply.github.com> Date: Sun, 12 Apr 2026 02:57:55 +0100 Subject: [PATCH] CI/GnuComment: enhance PR commenting logic to update existing comments --- .github/workflows/GnuComment.yml | 39 +++++++++++++++++++++++++------- 1 file changed, 31 insertions(+), 8 deletions(-) diff --git a/.github/workflows/GnuComment.yml b/.github/workflows/GnuComment.yml index 5841aa36d..8c9b51f1b 100644 --- a/.github/workflows/GnuComment.yml +++ b/.github/workflows/GnuComment.yml @@ -49,14 +49,37 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | - var fs = require('fs'); - var issue_number = Number(fs.readFileSync('./NR')); - var content = fs.readFileSync('./result.txt'); - if (content.toString().trim().length > 7) { // 7 because we have backquote + \n + const fs = require('fs'); + 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\`\`\``; + + const { data: comments } = await github.rest.issues.listComments({ + ...context.repo, + issue_number + }); + + const existing = comments.find(c => + c.user.login === 'github-actions[bot]' && + c.body.includes(marker) + ); + + if (existing) { + await github.rest.issues.updateComment({ + ...context.repo, + comment_id: existing.id, + body + }); + } else { await github.rest.issues.createComment({ - owner: context.repo.owner, - repo: context.repo.repo, - issue_number: issue_number, - body: 'GNU testsuite comparison:\n```\n' + content + '```' + ...context.repo, + issue_number, + body }); }