Skip to content

Commit

Permalink
Make headline bold
Browse files Browse the repository at this point in the history
  • Loading branch information
rehlma committed Apr 9, 2024
1 parent d3c413b commit f550402
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -93,11 +93,11 @@ function getTodoIfFound(line: string): string {
}

function generateComment(newTodos: string[], removedTodos: string[]): string {
let comment = 'New TODOs found in this PR:\n'
let comment = '**New TODOs found in this PR:**\n'
for (const todo of newTodos) {
comment += `- [ ] ${todo}\n`
}
comment += '\nSolved TODOs found in this PR:\n'
comment += '\n**Solved TODOs found in this PR:**\n'
for (const todo of removedTodos) {
comment += `- [x] ${todo}\n`
}
Expand Down

0 comments on commit f550402

Please sign in to comment.