MCPcopy
hub / github.com/openclaw/clawsweeper / CommitMetadata

Interface CommitMetadata

src/commit-sweeper.ts:27–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25export { isReviewableCommitPath } from "./commit-classifier.js";
26
27interface 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
42const ROOT = resolve(dirname(fileURLToPath(import.meta.url)), "..");
43const DEFAULT_CODEX_MODEL = PUBLIC_CODEX_MODEL;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected