@@ -149,11 +149,12 @@ func (uploadBatch *uploadBatch) conclude() error {
149
149
return NoFilesErr
150
150
}
151
151
body , err := json .Marshal (uploadConclusion {
152
- CiUploadId : strconv .Itoa (uploadBatch .ciUploadId ),
153
- RepositoryName : uploadBatch .gitMetaObject .RepositoryName ,
154
- IntegrationName : uploadBatch .integrationName ,
155
- CommitName : uploadBatch .gitMetaObject .CommitName ,
156
- Author : uploadBatch .gitMetaObject .Author ,
152
+ CiUploadId : strconv .Itoa (uploadBatch .ciUploadId ),
153
+ RepositoryName : uploadBatch .gitMetaObject .RepositoryName ,
154
+ IntegrationName : uploadBatch .integrationName ,
155
+ CommitName : uploadBatch .gitMetaObject .CommitName ,
156
+ Author : uploadBatch .gitMetaObject .Author ,
157
+ DebrickedIntegration : "cli" ,
157
158
})
158
159
159
160
if err != nil {
@@ -252,11 +253,12 @@ type uploadedFile struct {
252
253
}
253
254
254
255
type uploadConclusion struct {
255
- CiUploadId string `json:"ciUploadId"`
256
- RepositoryName string `json:"repositoryName"`
257
- IntegrationName string `json:"integrationName"`
258
- CommitName string `json:"commitName"`
259
- Author string `json:"author"`
256
+ CiUploadId string `json:"ciUploadId"`
257
+ RepositoryName string `json:"repositoryName"`
258
+ IntegrationName string `json:"integrationName"`
259
+ CommitName string `json:"commitName"`
260
+ Author string `json:"author"`
261
+ DebrickedIntegration string `json:"debrickedIntegration"`
260
262
}
261
263
262
264
func getRelativeFilePath (filePath string ) string {
0 commit comments