(ref: RepoRef)
| 129 | } |
| 130 | |
| 131 | export function getCacheKey(ref: RepoRef): string { |
| 132 | return `${ref.provider}:${ref.fullPath.toLowerCase()}`; |
| 133 | } |
| 134 | |
| 135 | export function getLegacyCacheKey(ref: RepoRef): string { |
| 136 | return `${ref.owner.toLowerCase()}/${ref.repo.toLowerCase()}`; |
no outgoing calls
no test coverage detected