* Returns the list of files changed relative to the branch point off of the * main branch in diffstat format. * @return {string}
()
| 74 | * @return {string} |
| 75 | */ |
| 76 | function gitDiffStatMain() { |
| 77 | const mainBaseline = gitMainBaseline(); |
| 78 | return getStdout(`git -c color.ui=always diff --stat ${mainBaseline}`); |
| 79 | } |
| 80 | |
| 81 | /** |
| 82 | * Returns a detailed log of commits included in a PR check, starting with (and |
no test coverage detected