Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tnyo43 committed Mar 3, 2024
1 parent 29c125a commit 8a9c34b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,13 @@ export async function run(): Promise<void> {
.map(comment => comment.user?.login)
.concat(reviewComments.map(comment => comment.user.login))
.filter((comment): comment is string => !!comment)
)
).map(login => `@${login}`)

await octokit.rest.issues.createComment({
owner,
repo,
issue_number: prNumber,
body: `Hey ${userLogins.map(login => '@' + login).join(', ')}!
body: `Hey ${userLogins.join(', ')}!
It seems the discussion is dragging on. Perhaps instead of text communication, you could try having a conversation via face-to-face or video call, or even try mob programming?
Expand Down

0 comments on commit 8a9c34b

Please sign in to comment.