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 2ebfa30 commit fca5222
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/comment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ const createBaseUrl = ({
branch: string;
runId: number;
artifactName: string;
date;
date: string;
}): string => {
return `https://github.com/${owner}/${repoName}/${branch}/${date}_${runId}_${artifactName}/`;
return `https://github.com/${owner}/${repoName}/blob/${branch}/${date}_${runId}_${artifactName}/`;
};

const differences = ({ result, baseUrl }: { result: CompareOutput; baseUrl: string }): string => {
Expand Down

0 comments on commit fca5222

Please sign in to comment.