Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/bulkAction/BulkUpdateService.go
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,7 @@ func (impl BulkUpdateServiceImpl) BulkBuildTrigger(request *BulkApplicationForEn
PipelineId: ciPipelineId,
CiPipelineMaterial: ciMaterials,
TriggeredBy: request.UserId,
InvalidateCache: false,
InvalidateCache: request.InvalidateCache,
}
latestCommitsMap[ciPipelineId] = ciTriggerRequest
ciCompletedStatus[ciPipelineId] = false
Expand Down
9 changes: 5 additions & 4 deletions pkg/bulkAction/bean.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,11 @@ type CmAndSecretBulkUpdateResponse struct {
}

type BulkApplicationForEnvironmentPayload struct {
AppIdIncludes []int `json:"appIdIncludes,omitempty"`
AppIdExcludes []int `json:"appIdExcludes,omitempty"`
EnvId int `json:"envId"`
UserId int32 `json:"-"`
AppIdIncludes []int `json:"appIdIncludes,omitempty"`
AppIdExcludes []int `json:"appIdExcludes,omitempty"`
EnvId int `json:"envId"`
UserId int32 `json:"-"`
InvalidateCache bool `json:"invalidateCache"`
}

type BulkApplicationForEnvironmentResponse struct {
Expand Down