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

Interface CommitReviewFrontMatter

src/commit-checks.ts:7–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5type CheckConclusion = "success" | "failure" | "neutral" | "timed_out";
6
7export interface CommitReviewFrontMatter {
8 [key: string]: string | string[] | undefined;
9 sha?: string;
10 repository?: string;
11 author?: string;
12 commit_authored_at?: string;
13 commit_committed_at?: string;
14 result?: string;
15 confidence?: string;
16 highest_severity?: string;
17 check_conclusion?: string;
18 reviewed_at?: string;
19}
20
21interface PublishCheckOptions {
22 targetRepo: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected