Skip to content

Commit

Permalink
github-ci: don't add author names/emails to new author comment
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jasonish authored and victorjulien committed Nov 17, 2023
1 parent bf0a176 commit acfde0c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/authors-done.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit acfde0c

Please sign in to comment.