Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bokuweb committed Oct 22, 2023
1 parent c7bb55a commit c6be7db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,13 @@ export const createCommentWithTarget = ({
const successOrFailMessage = isSuccess(result)
? `${badge(result)}
## ArtifactName: ${artifactName}
## ArtifactName: \`${artifactName}\`
✨✨ That's perfect, there is no visual difference! ✨✨
`
: `${badge(result)}
## ArtifactName: ${artifactName}
## ArtifactName: \`${artifactName}\`
`;

Expand Down Expand Up @@ -170,7 +170,7 @@ ${deletedItems({ result, baseUrl })}
};

export const createCommentWithoutTarget = ({ result, artifactName }: CreateCommentWithoutTargetInput): string => {
const body = `## ArtifactName: ${artifactName}
const body = `## ArtifactName: \`${artifactName}\`
Failed to find a target artifact.
All items will be treated as new items and will be used as expected data for the next time.
Expand Down

0 comments on commit c6be7db

Please sign in to comment.