Add docs for automationId

This commit is contained in:
Michael B. Gale
2026-03-03 11:35:43 +00:00
parent 6d060bbaa1
commit 2a2f4c30a1
+5 -1
View File
@@ -6,8 +6,12 @@ import * as sarif from "sarif";
export type * from "sarif";
// `automationId` is non-standard.
// Extends `ToolComponent` with the non-standard `automationId` property we use.
export type RunKey = sarif.ToolComponent & {
/**
* Describes a SARIF run (either uniquely or not uniquely) based on the criteria used by
* Code Scanning to determine analysis categories
*/
automationId: string | undefined;
};