Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin committed Jan 28, 2024
1 parent 7ada49c commit 4be4774
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/github-pr-commenter/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ function resolveComment(status: ChangeStatus): string {

if (documentedPackages.length > 0) {
content.push("");
content.push(`**:heavy_check_mark: The following packages have already been documented:**`);
content.push(`The following packages have already been documented:`);

for (const pkg of documentedPackages) {
content.push(` - \`${pkg.package.name}\``);
content.push(` - :white_check_mark: \`${pkg.package.name}\``);
}
}
content.push("");
Expand Down

0 comments on commit 4be4774

Please sign in to comment.