@@ -56,6 +56,7 @@ def labelsForModifiedFiles()
56
56
labels . push ( "api: crashlytics" ) if @has_crashlytics_changes
57
57
labels . push ( "api: database" ) if @has_database_changes
58
58
labels . push ( "api: dynamiclinks" ) if @has_dynamiclinks_changes
59
+ labels . push ( "api: firebaseai" ) if @has_firebaseai_changes
59
60
labels . push ( "api: firestore" ) if @has_firestore_changes
60
61
labels . push ( "api: functions" ) if @has_functions_changes
61
62
labels . push ( "api: inappmessaging" ) if @has_inappmessaging_changes
@@ -64,7 +65,6 @@ def labelsForModifiedFiles()
64
65
labels . push ( "api: performance" ) if @has_performance_changes
65
66
labels . push ( "api: remoteconfig" ) if @has_remoteconfig_changes
66
67
labels . push ( "api: storage" ) if @has_storage_changes
67
- labels . push ( "api: vertexai" ) if @has_vertexai_changes
68
68
labels . push ( "release-tooling" ) if @has_releasetooling_changes
69
69
labels . push ( "public-api-change" ) if @has_api_changes
70
70
return labels
@@ -94,15 +94,15 @@ has_license_changes = didModify(["LICENSE"])
94
94
"Crashlytics" ,
95
95
"Database" ,
96
96
"DynamicLinks" ,
97
+ "FirebaseAI" ,
97
98
"Firestore" ,
98
99
"Functions" ,
99
100
"InAppMessaging" ,
100
101
"Installations" ,
101
102
"Messaging" ,
102
103
"Performance" ,
103
104
"RemoteConfig" ,
104
- "Storage" ,
105
- "VertexAI"
105
+ "Storage"
106
106
]
107
107
108
108
## Product directories
@@ -134,6 +134,10 @@ has_license_changes = didModify(["LICENSE"])
134
134
@has_database_api_changes = hasChangesIn ( "FirebaseDatabase/Sources/Public/" )
135
135
@has_dynamiclinks_changes = hasChangesIn ( "FirebaseDynamicLinks" )
136
136
@has_dynamiclinks_api_changes = hasChangesIn ( "FirebaseDynamicLinks/Sources/Public/" )
137
+ @has_firebaseai_changes = hasChangesIn ( [
138
+ "FirebaseAI" ,
139
+ "FirebaseVertexAI"
140
+ ] )
137
141
@has_firestore_changes = hasChangesIn ( [ "Firestore/" , "FirebaseFirestore.podspec" ] )
138
142
@has_firestore_api_changes = hasChangesIn ( "Firestore/Source/Public/" )
139
143
@has_functions_changes = hasChangesIn ( [ "FirebaseFunctions" ] )
@@ -149,7 +153,6 @@ has_license_changes = didModify(["LICENSE"])
149
153
@has_remoteconfig_changes = hasChangesIn ( "FirebaseRemoteConfig" )
150
154
@has_remoteconfig_api_changes = hasChangesIn ( "FirebaseRemoteConfig/Sources/Public/" )
151
155
@has_storage_changes = hasChangesIn ( "FirebaseStorage" )
152
- @has_vertexai_changes = hasChangesIn ( "FirebaseVertexAI" )
153
156
154
157
@has_releasetooling_changes = hasChangesIn ( "ReleaseTooling/" )
155
158
@has_public_additions = hasAdditionsIn ( "Public/" )
0 commit comments