From 846bc259a4e9dfc02efc6be4fc8657a2c360b22f Mon Sep 17 00:00:00 2001 From: subhashish-devtron Date: Tue, 16 Apr 2024 13:28:30 +0530 Subject: [PATCH] adding dockerid --- helper/EventHelper.go | 2 ++ 1 file changed, 2 insertions(+) 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)