We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
automationId
1 parent 6d060bb commit 2a2f4c3Copy full SHA for 2a2f4c3
src/sarif/index.ts
@@ -6,8 +6,12 @@ import * as sarif from "sarif";
6
7
export type * from "sarif";
8
9
-// `automationId` is non-standard.
+// Extends `ToolComponent` with the non-standard `automationId` property we use.
10
export type RunKey = sarif.ToolComponent & {
11
+ /**
12
+ * Describes a SARIF run (either uniquely or not uniquely) based on the criteria used by
13
+ * Code Scanning to determine analysis categories
14
+ */
15
automationId: string | undefined;
16
};
17
0 commit comments