(args: string[])
| 460 | return result |
| 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>`) |
no test coverage detected