]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
github-ci: don't add author names/emails to new author comment
authorJason Ish <jason.ish@oisf.net>
Thu, 16 Nov 2023 13:33:35 +0000 (07:33 -0600)
committerVictor Julien <victor@inliniac.net>
Fri, 17 Nov 2023 21:24:14 +0000 (22:24 +0100)
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.

.github/workflows/authors-done.yml

index b1700e1d030df197b11417852c4b8e5ea71098f7..d0fdf4491c454b497ee19008fb2277f9a6dddede 100644 (file)
@@ -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,