Skip to content

Commit 507e570

Browse files
committed
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.
1 parent 774f616 commit 507e570

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/authors-done.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ jobs:
4444
script: |
4545
let fs = require('fs');
4646
let issue_number = Number(fs.readFileSync('./pr-number.txt'));
47-
let new_authors = String(fs.readFileSync('./new-authors.txt'));
48-
let msg = 'NOTE: This PR may contain new authors:\n\n```\n' + new_authors + '```';
47+
let msg = 'NOTE: This PR may contain new authors.';
4948
await github.rest.issues.createComment({
5049
owner: context.repo.owner,
5150
repo: context.repo.repo,

0 commit comments

Comments
 (0)