Type the upload payload object

This commit is contained in:
Michael B. Gale
2026-02-11 23:40:55 +00:00
parent db9346285d
commit cbb92e7ff6
3 changed files with 29 additions and 4 deletions
+15
View File
@@ -0,0 +1,15 @@
export interface UploadPayload {
commit_oid: string;
ref: string;
analysis_key?: string;
analysis_name?: string;
sarif: string;
workflow_run_id: number;
workflow_run_attempt: number;
checkout_uri: string;
environment?: string;
started_at?: string;
tool_names: string[];
base_ref?: string;
base_sha?: string;
}