Skip to content

Commit d572e4a

Browse files
Print issue author alongside the issue title
1 parent d00f56f commit d572e4a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,10 @@ const issuesMarkDown =
414414
.map(
415415
(group) =>
416416
`## ${group[0].repo}\n\n${group
417-
.map((issue: any) => `- [${issue.title}](${issue.url})`)
417+
.map(
418+
(issue: any) =>
419+
`- [${issue.user.login}: ${issue.title}](${issue.url})`
420+
)
418421
.join("\n")}`
419422
)
420423
.join("\n\n") +

0 commit comments

Comments
 (0)