(summary: string, actor?: string)
| 461 | } |
| 462 | const gitStatus = (args: string[]) => Effect.runPromise(gitSvc.run(args, { cwd: ctx.worktree })) |
| 463 | const commitChanges = async (summary: string, actor?: string) => { |
| 464 | const args = ["commit", "-m", summary] |
| 465 | if (actor) args.push("-m", `Co-authored-by: ${actor} <${actor}@users.noreply.github.com>`) |
| 466 | await gitRun(args) |
| 467 | } |
| 468 | |
| 469 | try { |
| 470 | if (useGithubToken) { |
no test coverage detected