From a94bcfbd79dd892a12790cbb274b158adbded120 Mon Sep 17 00:00:00 2001 From: Jake Bolam Date: Sun, 13 Jan 2019 22:33:32 +0800 Subject: [PATCH] feat: tag those being added --- src/processIssueComment.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/processIssueComment.js b/src/processIssueComment.js index f1a72d08..f613337a 100644 --- a/src/processIssueComment.js +++ b/src/processIssueComment.js @@ -45,7 +45,7 @@ async function processAddContributor({ const pullRequestURL = await repository.createPullRequestFromFiles({ title: `docs: add ${who} as a contributor`, - body: `Adds ${who} as a contributor for ${contributions.join( + body: `Adds @${who} as a contributor for ${contributions.join( ', ', )}.\n\nThis was requested by ${commentReply.replyingToWho()} [in this comment](${commentReply.replyingToWhere()})`, filesByPath: filesByPathToUpdate, @@ -53,7 +53,7 @@ async function processAddContributor({ }) commentReply.reply( - `I've put up [a pull request](${pullRequestURL}) to add ${who}! :tada:`, + `I've put up [a pull request](${pullRequestURL}) to add @${who}! :tada:`, ) }