(gitDir: string)
| 267 | }; |
| 268 | |
| 269 | export const getHeadCommitMessage = async (gitDir: string): Promise<string> => { |
| 270 | const { stdout } = await runGit(['log', '-1', '--pretty=%B'], gitDir); |
| 271 | return stdout.trim(); |
| 272 | }; |
| 273 | |
| 274 | export const getHeadCommitFiles = async (gitDir: string): Promise<string[]> => { |
| 275 | const { stdout } = await runGit( |
no test coverage detected