Skip to content

Commit 9e89a2a

Browse files
committed
Fix head
1 parent 05329a9 commit 9e89a2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/report.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function getReport({
5959
);
6060

6161
const formattedResults = result.map(({ repository, diff: rawDiff }) => {
62-
const head = repository.commit;
62+
const head = `[${repository.repository}@${repository.commit}](https://github.com/${repository.repository}/tree/{repository.commit})`;
6363
const diff = formatDiff(rawDiff);
6464
const length =
6565
title.length +

0 commit comments

Comments
 (0)