| 25 | export { isReviewableCommitPath } from "./commit-classifier.js"; |
| 26 | |
| 27 | interface CommitMetadata { |
| 28 | sha: string; |
| 29 | parents: string[]; |
| 30 | authorName: string; |
| 31 | authorEmail: string; |
| 32 | committerName: string; |
| 33 | committerEmail: string; |
| 34 | authoredAt: string; |
| 35 | committedAt: string; |
| 36 | subject: string; |
| 37 | coAuthors: string[]; |
| 38 | githubAuthor: string; |
| 39 | githubCommitter: string; |
| 40 | } |
| 41 | |
| 42 | const ROOT = resolve(dirname(fileURLToPath(import.meta.url)), ".."); |
| 43 | const DEFAULT_CODEX_MODEL = PUBLIC_CODEX_MODEL; |
nothing calls this directly
no outgoing calls
no test coverage detected