From 8c5ad4fc7d656d077c676cfe0f7448f77abbf00e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 06:16:13 +0000 Subject: [PATCH 1/2] Initial plan From 009b53ad2b4f155af95456d5fdd13d4336849caa Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 22 Feb 2026 06:21:37 +0000 Subject: [PATCH 2/2] Fix TestCreateIssueGroupFieldParsing: update Group field type from bool to *string Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/workflow/create_issue_group_test.go | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkg/workflow/create_issue_group_test.go b/pkg/workflow/create_issue_group_test.go index c1ab54b20a7..5954911dfe6 100644 --- a/pkg/workflow/create_issue_group_test.go +++ b/pkg/workflow/create_issue_group_test.go @@ -14,10 +14,11 @@ import ( // TestCreateIssueGroupFieldParsing verifies that the group field is parsed correctly func TestCreateIssueGroupFieldParsing(t *testing.T) { + strPtr := func(s string) *string { return &s } tests := []struct { name string frontmatter string - expectedGroup bool + expectedGroup *string }{ { name: "group enabled with true", @@ -34,7 +35,7 @@ safe-outputs: --- Test content`, - expectedGroup: true, + expectedGroup: strPtr("true"), }, { name: "group disabled with false", @@ -51,10 +52,10 @@ safe-outputs: --- Test content`, - expectedGroup: false, + expectedGroup: strPtr("false"), }, { - name: "group not specified defaults to false", + name: "group not specified defaults to nil", frontmatter: `--- name: Test Workflow on: workflow_dispatch @@ -67,7 +68,7 @@ safe-outputs: --- Test content`, - expectedGroup: false, + expectedGroup: nil, }, }