From 129c45820bb34409a3f43d622a9402eaa39cb58d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Feb 2026 23:44:52 +0000 Subject: [PATCH 1/2] Initial plan From 0d1df984f0ffcca5f68dd930d85cc9ba2280f903 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 17 Feb 2026 23:49:23 +0000 Subject: [PATCH 2/2] Fix testifylint error: use assert.NotContains instead of assert.False(strings.Contains) Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/compiler_string_api_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pkg/workflow/compiler_string_api_test.go b/pkg/workflow/compiler_string_api_test.go index 2a64496cad0..230d9b4ace1 100644 --- a/pkg/workflow/compiler_string_api_test.go +++ b/pkg/workflow/compiler_string_api_test.go @@ -3,7 +3,6 @@ package workflow import ( - "strings" "testing" "github.com/stretchr/testify/assert" @@ -226,7 +225,7 @@ When a new issue is opened, add a welcome comment. // Verify the YAML is valid-looking // CompileToYAML skips the ASCII art header (wasm/editor mode), so YAML starts with the name - assert.False(t, strings.Contains(yaml, "Agentic"), "compiled YAML should not contain ASCII art header") + assert.NotContains(t, yaml, "Agentic", "compiled YAML should not contain ASCII art header") assert.Contains(t, yaml, "e2e-test") assert.Contains(t, yaml, "issues") }