From 64012ba7040af2c7bb1b09ea456fcc5ed3c6615f Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 26 Apr 2026 20:52:09 +0000 Subject: [PATCH 1/2] Initial plan From 8672242a5732c2d3e7418ff888ffa30cfa918f3b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 26 Apr 2026 20:56:58 +0000 Subject: [PATCH 2/2] fix: remove duplicate log statements in parseUpdateEntityConfig Agent-Logs-Url: https://github.com/github/gh-aw/sessions/7a255b2c-67bb-47b6-a8c5-c2d135708257 Co-authored-by: gh-aw-bot <259018956+gh-aw-bot@users.noreply.github.com> --- pkg/workflow/update_entity_helpers.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/workflow/update_entity_helpers.go b/pkg/workflow/update_entity_helpers.go index 7e611bfaf0a..27761dec3d9 100644 --- a/pkg/workflow/update_entity_helpers.go +++ b/pkg/workflow/update_entity_helpers.go @@ -125,7 +125,6 @@ type UpdateEntityJobBuilder struct { // parseUpdateEntityConfig is a generic function to parse update entity configurations func (c *Compiler) parseUpdateEntityConfig(outputMap map[string]any, params UpdateEntityJobParams, logger *logger.Logger, parseSpecificFields func(map[string]any, *UpdateEntityConfig)) *UpdateEntityConfig { if configData, exists := outputMap[params.ConfigKey]; exists { - updateEntityHelpersLog.Printf("Parsing %s configuration", params.ConfigKey) logger.Printf("Parsing %s configuration", params.ConfigKey) config := &UpdateEntityConfig{} @@ -133,8 +132,7 @@ func (c *Compiler) parseUpdateEntityConfig(outputMap map[string]any, params Upda // Parse target config (target, target-repo) with validation targetConfig, isInvalid := ParseTargetConfig(configMap) if isInvalid { - updateEntityHelpersLog.Printf("Invalid target-repo configuration for %s", params.ConfigKey) - logger.Print("Invalid target-repo configuration") + logger.Printf("Invalid target-repo configuration for %s", params.ConfigKey) return nil } config.SafeOutputTargetConfig = targetConfig