We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdddaf7 commit 1b3ce8dCopy full SHA for 1b3ce8d
src/github/copilotApi.ts
@@ -192,7 +192,7 @@ export class CopilotApi {
192
Logger.error('Failed to get GitHub username from auth provider', CopilotApi.ID);
193
return [];
194
}
195
- const query = `is:open author:copilot-swe-agent[bot] assignee:${username} is:pr`;
+ const query = `is:open author:copilot-swe-agent[bot] assignee:${username} is:pr repo:\${owner}/\${repository}`;
196
const allItems = await Promise.all(
197
repositoriesManager.folderManagers.map(async fm => {
198
const result = await fm.getPullRequests(PRType.Query, undefined, query);
0 commit comments