Skip to content

Commit

Permalink
feat: tag those being added
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolam committed Jan 13, 2019
1 parent 656ddd2 commit a94bcfb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/processIssueComment.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,15 @@ 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,
branchName: `all-contributors/add-${who}`,
})

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:`,
)
}

Expand Down

0 comments on commit a94bcfb

Please sign in to comment.