Skip to content

Commit 8f9abfd

Browse files
committed
wrap pattern in backticks too
1 parent 38b299c commit 8f9abfd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/post-codeowners-comment/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ async function run(): Promise<void> {
6161
"| ------- | ------ |",
6262
...matchedPatterns.map(
6363
(pattern) =>
64-
`| ${pattern.pattern} | ${pattern.owners.map((owner) => "`" + owner + "`").join(", ")} |`,
64+
`| \`${pattern.pattern}\` | ${pattern.owners.map((owner) => `\`${owner}\``).join(", ")} |`,
6565
),
6666
].join("\n");
6767

0 commit comments

Comments
 (0)