@trim21/personal-pi-extensions 0.0.122 → 0.0.123
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/gh-readonly.ts +1 -1
package/package.json
CHANGED
package/src/gh-readonly.ts
CHANGED
|
@@ -1235,7 +1235,7 @@ export default function (pi: ExtensionAPI) {
|
|
|
1235
1235
|
limit?: number;
|
|
1236
1236
|
};
|
|
1237
1237
|
const args = ["search", "issues", query];
|
|
1238
|
-
if (
|
|
1238
|
+
if (include_prs) args.push("--include-prs");
|
|
1239
1239
|
if (limit) args.push("--limit", String(limit));
|
|
1240
1240
|
return toToolResult(await ghExec(pi, args, { cwd: ctx.cwd, signal }));
|
|
1241
1241
|
},
|