在github组织中搜索具有已知PR名称模式的存储库

时间:2018-11-08 02:35:38

标签: github github-api github-api-v3

我们的一个应用程序可以根据用户请求提交github PR。用户可以决定合并此PR或不合并它们。

是否可以搜索git hub组织以找到具有未合并PR的存储库。 PR遵循命名模式,即静态字符串,末尾是动态部分。

ie. search git-org for all repos with a PR name like %auto_generated_pr_name_pattern%

谢谢, San

1 个答案:

答案 0 :(得分:1)

您可以尝试使用GitHub search,其中包括operators for merged or unmerged PR

is:unmerged

示例:error is:unmerged匹配已解决的问题并使用单词“ error”拉取请求。

您可以添加in:title operator来搜索PR名称。

在GitHub API端,您有Search Issues,正如它的名字 not 所建议的那样,它也可以搜索PR。
其搜索参数包括:

  

is:在存储库中搜索与某个状态(例如打开,关闭或合并)匹配的项目。