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 01ecc4d commit 5c9ea54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ export const createCommentWithTarget = ({
const successOrFailMessage = isSuccess(result)
? `${badge(result)}
## ${artifactName}
## ArtifactName: ${artifactName}
✨✨ That's perfect, there is no visual difference! ✨✨
`
Expand Down Expand Up @@ -167,7 +167,7 @@ ${deletedItems({ result, baseUrl })}
};

export const createCommentWithoutTarget = ({ result, artifactName }: CreateCommentWithoutTargetInput): string => {
const body = `## ${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
1 change: 0 additions & 1 deletion src/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import cpx from 'cpx';
import { sync as globSync } from 'glob';
import makeDir from 'make-dir';
import Zip from 'adm-zip';
import { summary } from '@actions/core';

import { log } from './logger';
import { Config } from './config';
Expand Down

0 comments on commit 5c9ea54

Please sign in to comment.