From 5228e98c2d707712f4881ca4c41f7c0af27d31fa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 04:22:05 +0000 Subject: [PATCH 1/2] Initial plan From eaa4816f7333f63a2ddd6f5ffd43c45f14bab20a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 04:28:06 +0000 Subject: [PATCH 2/2] fix: remove unused strPtr helper to fix Go lint error Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/test_helpers_shared_test.go | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pkg/workflow/test_helpers_shared_test.go b/pkg/workflow/test_helpers_shared_test.go index fe42256f946..229888d69c9 100644 --- a/pkg/workflow/test_helpers_shared_test.go +++ b/pkg/workflow/test_helpers_shared_test.go @@ -6,12 +6,6 @@ func boolPtr(b bool) *bool { return &b } -// strPtr returns a pointer to a string value. -// This is a shared helper used by both unit and integration tests. -func strPtr(s string) *string { - return &s -} - // mockValidationError helps create validation errors for testing. // This is a shared helper used by both unit and integration tests. type mockValidationError struct {