(output: string)
| 28 | } |
| 29 | |
| 30 | function countNonEmptyLines(output: string) { |
| 31 | return output |
| 32 | .split('\n') |
| 33 | .map((line) => line.trim()) |
| 34 | .filter(Boolean).length |
| 35 | } |
| 36 | |
| 37 | export function buildDefaultCommitMessage(context: { fileCount: number }) { |
| 38 | if (context.fileCount <= 0) { |
no outgoing calls
no test coverage detected