(output: string)
| 11 | /** Timeout for git push (network-bound) */ |
| 12 | const GIT_PUSH_TIMEOUT_MS = 60_000; |
| 13 | /** Timeout for commit message generation API call */ |
| 14 | const COMMIT_MESSAGE_TIMEOUT_MS = 30_000; |
| 15 | const worktreeAutoCommits = new Map<string, Promise<void>>(); |
| 16 | const COMMIT_EVIDENCE_TIMEOUT_MS = 5_000; |
| 17 | |
| 18 | type CommitEvidence = { |
no test coverage detected