From 8012ebdb040edd7513189b61bbcd1f88c41af82c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Dec 2025 16:57:05 +0000 Subject: [PATCH 1/2] Initial plan From aa8cfae775c60ba1d26be15874a4d8ec094f8ed5 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 22 Dec 2025 17:00:02 +0000 Subject: [PATCH 2/2] Remove invalid 'copilot' assignee from issue creation Co-authored-by: friuns <7095563+friuns@users.noreply.github.com> --- README.md | 3 +-- views/RepoDetail.tsx | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index da3144a..c29b1d9 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,7 @@ Issues created through VibeGithub are pre-configured for AI agent consumption: const createdIssue = await createIssue(token, repo.owner.login, repo.name, { title: newTitle, body: newBody, - labels: ['jules'], // Auto-labeled for Jules - assignees: ['copilot'] // Auto-assigned to Copilot + labels: ['jules'] // Auto-labeled for Jules }); ``` diff --git a/views/RepoDetail.tsx b/views/RepoDetail.tsx index b3e1ab8..04dece3 100644 --- a/views/RepoDetail.tsx +++ b/views/RepoDetail.tsx @@ -81,8 +81,7 @@ export const RepoDetail: React.FC = ({ token, repo, onBack, onI const createdIssue = await createIssue(token, repo.owner.login, repo.name, { title: newTitle, body: newBody, - labels: ['jules'], - assignees: ['copilot'] + labels: ['jules'] }); setIsModalOpen(false); setNewTitle('');