From: Jason Ish Date: Thu, 16 Nov 2023 13:33:35 +0000 (-0600) Subject: github-ci: don't add author names/emails to new author comment X-Git-Tag: suricata-8.0.0-beta1~2056 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bec1d8ca9f5574a90e570fa1ec1042f31842d914;p=thirdparty%2Fsuricata.git github-ci: don't add author names/emails to new author comment The new author details will still be available in the artifact, we're just not calling them out in a nighly visible pull request comment. --- diff --git a/.github/workflows/authors-done.yml b/.github/workflows/authors-done.yml index b1700e1d03..d0fdf4491c 100644 --- a/.github/workflows/authors-done.yml +++ b/.github/workflows/authors-done.yml @@ -44,8 +44,7 @@ jobs: script: | let fs = require('fs'); let issue_number = Number(fs.readFileSync('./pr-number.txt')); - let new_authors = String(fs.readFileSync('./new-authors.txt')); - let msg = 'NOTE: This PR may contain new authors:\n\n```\n' + new_authors + '```'; + let msg = 'NOTE: This PR may contain new authors.'; await github.rest.issues.createComment({ owner: context.repo.owner, repo: context.repo.repo,