diff --git a/helper/EventHelper.go b/helper/EventHelper.go index a82f9039..12d33b8a 100644 --- a/helper/EventHelper.go +++ b/helper/EventHelper.go @@ -347,6 +347,7 @@ type CiCompleteEvent struct { PluginRegistryArtifactDetails map[string][]string `json:"PluginRegistryArtifactDetails"` PluginArtifactStage string `json:"pluginArtifactStage"` IsScanEnabled bool `json:"isScanEnabled"` + DockerRegistryId string `json:"dockerRegistryId"` } type NotifyPipelineType string @@ -467,6 +468,7 @@ func SendEvents(ciRequest *CommonWorkflowRequest, digest string, image string, m PluginRegistryArtifactDetails: ciRequest.RegistryDestinationImageMap, PluginArtifactStage: ciRequest.PluginArtifactStage, IsScanEnabled: ciRequest.ScanEnabled, + DockerRegistryId: ciRequest.DockerRegistryId, } err := SendCiCompleteEvent(ciRequest, event)