From bec1d8ca9f5574a90e570fa1ec1042f31842d914 Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Thu, 16 Nov 2023 07:33:35 -0600 Subject: [PATCH] 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. --- .github/workflows/authors-done.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/authors-done.yml b/.github/workflows/authors-done.yml index b1700e1d030d..d0fdf4491c45 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,