@@ -46,7 +46,8 @@ export const SpecGenSdkArtifactInfoSchema = z.object({
4646 * breakingChange: string | undefined,
4747 * breakingChangeApproved: string | undefined,
4848 * breakingChangeSuppression: string | undefined,
49- * breakingChangeSuppressionApproved: string | undefined
49+ * breakingChangeSuppressionApproved: string | undefined,
50+ * buildFailed: string | undefined
5051 * }} SdkLabelInfo
5152 */
5253
@@ -55,7 +56,7 @@ export const SpecGenSdkArtifactInfoSchema = z.object({
5556 */
5657
5758/**
58- * SDK labels mapping for breaking change labels
59+ * SDK labels mapping for breaking change and build-failure labels
5960 * @type {SdkLabels }
6061 * */
6162export const sdkLabels = {
@@ -64,35 +65,41 @@ export const sdkLabels = {
6465 breakingChangeApproved : "BreakingChange-Go-Sdk-Approved" ,
6566 breakingChangeSuppression : "BreakingChange-Go-Sdk-Suppression" ,
6667 breakingChangeSuppressionApproved : "BreakingChange-Go-Sdk-Suppression-Approved" ,
68+ buildFailed : undefined ,
6769 } ,
6870 "azure-sdk-for-java" : {
6971 breakingChange : undefined ,
7072 breakingChangeApproved : undefined ,
7173 breakingChangeSuppression : undefined ,
7274 breakingChangeSuppressionApproved : undefined ,
75+ buildFailed : undefined ,
7376 } ,
7477 "azure-sdk-for-js" : {
7578 breakingChange : "BreakingChange-JavaScript-Sdk" ,
7679 breakingChangeApproved : "BreakingChange-JavaScript-Sdk-Approved" ,
7780 breakingChangeSuppression : "BreakingChange-JavaScript-Sdk-Suppression" ,
7881 breakingChangeSuppressionApproved : "BreakingChange-JavaScript-Sdk-Suppression-Approved" ,
82+ buildFailed : undefined ,
7983 } ,
8084 "azure-sdk-for-net" : {
8185 breakingChange : undefined ,
8286 breakingChangeApproved : undefined ,
8387 breakingChangeSuppression : undefined ,
8488 breakingChangeSuppressionApproved : undefined ,
89+ buildFailed : "auto-sdk-build-fix" ,
8590 } ,
8691 "azure-sdk-for-python" : {
8792 breakingChange : "BreakingChange-Python-Sdk" ,
8893 breakingChangeApproved : "BreakingChange-Python-Sdk-Approved" ,
8994 breakingChangeSuppression : "BreakingChange-Python-Sdk-Suppression" ,
9095 breakingChangeSuppressionApproved : "BreakingChange-Python-Sdk-Suppression-Approved" ,
96+ buildFailed : undefined ,
9197 } ,
9298 "azure-sdk-for-rust" : {
9399 breakingChange : undefined ,
94100 breakingChangeApproved : undefined ,
95101 breakingChangeSuppression : undefined ,
96102 breakingChangeSuppressionApproved : undefined ,
103+ buildFailed : undefined ,
97104 } ,
98105} ;
0 commit comments