(repoPath: string, commitSha: string)
| 99 | } |
| 100 | |
| 101 | function getCommitMessage(repoPath: string, commitSha: string): string { |
| 102 | return execSync(`git log --format=%B -n 1 ${commitSha}`, { |
| 103 | cwd: repoPath, |
| 104 | encoding: 'utf-8', |
| 105 | }).trim() |
| 106 | } |
| 107 | |
| 108 | function printTaskResult(taskResult: { |
| 109 | id: string |