(targetRepo: string, sha: string)
| 64 | } |
| 65 | |
| 66 | export function commitReportRelativePath(targetRepo: string, sha: string): string { |
| 67 | return `records/${repoSlug(targetRepo)}/commits/${assertSha(sha)}.md`; |
| 68 | } |
| 69 | |
| 70 | function artifactReportRelativePath(targetRepo: string, sha: string): string { |
| 71 | return join(repoSlug(targetRepo), "commits", `${assertSha(sha)}.md`); |
no test coverage detected