(baseRef: string, file: string)
| 86 | } |
| 87 | |
| 88 | function getFileUpdatedAt(baseRef: string, file: string) { |
| 89 | if (hasWorkingTreeChange(file)) return Number.MAX_SAFE_INTEGER |
| 90 | |
| 91 | const timestamp = git(["log", "-1", "--format=%ct", `${baseRef}..HEAD`, "--", file]) |
| 92 | return timestamp ? Number(timestamp) : 0 |
| 93 | } |
| 94 | |
| 95 | function getUpdatedSourceIds() { |
| 96 | try { |
no test coverage detected