Skip to content

Commit

Permalink
Tag users in pullRequestComment (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeeus authored Feb 2, 2023
1 parent f4037f4 commit 59d8820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/bots/src/github-webhook/handlers/validate-cla.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ export class ValidateCla extends BaseWebhookHandler {
context.scheduleIssueComment({
handler: botContextName,
comment: pullRequestComment(
uniqueEntries(authorsNeedingCLA.map((entry) => entry.login)),
uniqueEntries(authorsNeedingCLA.map((entry) => `@${entry.login}`)),
`${context.payload.repository.full_name}#${context.payload.number}`,
),
});
Expand Down

0 comments on commit 59d8820

Please sign in to comment.