* Returns the merge base of the current branch off of the main branch when * running on a local workspace. * @return {string}
()
| 192 | * @return {string} |
| 193 | */ |
| 194 | function gitMergeBaseLocalMain() { |
| 195 | return getStdout('git merge-base main HEAD').trim(); |
| 196 | } |
| 197 | |
| 198 | /** |
| 199 | * Returns the baseline commit from the main branch, regardless of running |
no test coverage detected