From e17edaabe5dd8f5b79455c6d3f4de0fe7acf93d6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 01:42:15 +0000 Subject: [PATCH 1/2] Initial plan From 8499404904c6a2c245e03779b97408ca4313fcf6 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 3 Feb 2026 01:49:55 +0000 Subject: [PATCH 2/2] Fix test expectations for github organization Co-authored-by: pelikhan <4175913+pelikhan@users.noreply.github.com> --- pkg/repoutil/repoutil_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/repoutil/repoutil_test.go b/pkg/repoutil/repoutil_test.go index 711924a5ad..71a13d1f65 100644 --- a/pkg/repoutil/repoutil_test.go +++ b/pkg/repoutil/repoutil_test.go @@ -15,7 +15,7 @@ func TestSplitRepoSlug(t *testing.T) { { name: "valid slug", slug: "github/gh-aw", - expectedOwner: "githubnext", + expectedOwner: "github", expectedRepo: "gh-aw", expectError: false, }, @@ -81,7 +81,7 @@ func TestParseGitHubURL(t *testing.T) { { name: "SSH format with .git", url: "git@github.com:github/gh-aw.git", - expectedOwner: "githubnext", + expectedOwner: "github", expectedRepo: "gh-aw", expectError: false, }, @@ -154,7 +154,7 @@ func TestSanitizeForFilename(t *testing.T) { { name: "normal slug", slug: "github/gh-aw", - expected: "githubnext-gh-aw", + expected: "github-gh-aw", }, { name: "empty slug",