claude-teammate 0.1.40 → 0.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/github.js +1 -1
package/package.json
CHANGED
package/src/github.js
CHANGED
|
@@ -291,7 +291,7 @@ export function createGitHubClient(config) {
|
|
|
291
291
|
},
|
|
292
292
|
|
|
293
293
|
async listPrsNeedingReview() {
|
|
294
|
-
const query = "is:pr
|
|
294
|
+
const query = "is:pr is:open user-review-requested:@me -label:AI-reviewed";
|
|
295
295
|
const url = new URL("https://api.github.com/search/issues");
|
|
296
296
|
url.searchParams.set("q", query);
|
|
297
297
|
url.searchParams.set("per_page", "10");
|