Skip to content

Commit

Permalink
Remove horizontal rule tags from GitHub script comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pelikhan committed Sep 20, 2024
1 parent 419d19e commit 7024e6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/github.ts
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function mergeDescription(
text: string
) {
body = body ?? ""
const tag = `<!-- genaiscript begin ${commentTag} --><hr/>`
const tag = `<!-- genaiscript begin ${commentTag} -->`
const endTag = `<!-- genaiscript end ${commentTag} -->`
const sep = "\n\n"

Expand Down Expand Up @@ -190,7 +190,7 @@ export function appendGeneratedComment(
) {
const { message, code, severity } = annotation
return prettifyMarkdown(
`<!-- genaiscript ${severity} ${code || ""} -->
`<!-- genaiscript ${severity} ${code || ""} --><hr/>
${message}
${generatedByFooter(script, info, code)}`
)
Expand Down

0 comments on commit 7024e6e

Please sign in to comment.