diff --git a/.github/workflows/GnuComment.yml b/.github/workflows/GnuComment.yml index 5841aa36db7..3dc2a46d96a 100644 --- a/.github/workflows/GnuComment.yml +++ b/.github/workflows/GnuComment.yml @@ -49,14 +49,36 @@ 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(); + + 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 { + if (content.trim().length <= 7) { // 7 because we have backquote + \n + return; + } 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 }); }