Skip to content
This repository was archived by the owner on Jul 18, 2025. It is now read-only.

Commit a53f0cf

Browse files
committed
Fix check body formatting
The check body wasn't using the correct markdown for a horizontal line. [changelog:fixed]
1 parent 74b95ee commit a53f0cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/events.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ const NpmScriptsStep: NpmStep = {
317317
params.body.push(spawnFailure(result));
318318
await params.check.update({
319319
conclusion: "failure",
320-
body: params.body.join("\n\n--\n\n"),
320+
body: params.body.join("\n\n---\n\n"),
321321
annotations: annotations.map(r => ({
322322
annotationLevel: r.severity,
323323
path: r.path.replace(home + "/", ""),

0 commit comments

Comments
 (0)