From f2c4c258ddf354a8bbd7264e6875d0c555e931bd Mon Sep 17 00:00:00 2001 From: Illia Polosukhin Date: Mon, 20 Apr 2026 15:22:33 +0900 Subject: [PATCH] docs(skills): clarify /search/issues returns issues and PRs (#2713) * docs(skills): clarify /search/issues returns issues and PRs Add a bullet noting the unified /search/issues endpoint returns both issues and pull requests and there is no /search/pulls endpoint. Co-Authored-By: Claude Opus 4.7 (1M context) * docs(skills): simplify /search/issues bullet per review Addresses gemini-code-assist review on PR #2713: trim redundancy with the section header and focus the note on the absence of a /search/pulls endpoint. Co-Authored-By: Claude Opus 4.7 (1M context) --------- Co-authored-by: Claude Opus 4.7 (1M context) --- skills/github/SKILL.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skills/github/SKILL.md b/skills/github/SKILL.md index 9795e6c8ee..74c4c7e1a9 100644 --- a/skills/github/SKILL.md +++ b/skills/github/SKILL.md @@ -141,6 +141,8 @@ GitHub has three search endpoints. Build queries with the [search syntax](https: http(method="GET", url="https://api.github.com/search/issues?q=repo:{owner}/{repo}+is:pr+is:open+label:bug") ``` +- Note: There is no `/search/pulls` endpoint; `/search/issues` is the unified endpoint for both issues and PRs. + **Search code:** ``` http(method="GET", url="https://api.github.com/search/code?q=fn+main+language:rust+repo:{owner}/{repo}")