| 5 | type CheckConclusion = "success" | "failure" | "neutral" | "timed_out"; |
| 6 | |
| 7 | export 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 | |
| 21 | interface PublishCheckOptions { |
| 22 | targetRepo: string; |
nothing calls this directly
no outgoing calls
no test coverage detected