如何在过滤 Github 拉取请求时过滤掉特定的回购协议
How to filter out specific repos when filtering Github pull requests
我管理着几个 Github 组织,其中 1 个组织有 119 个回购协议 - 在这 119 个回购协议中,有 4 个我对打开拉取请求不感兴趣。
我正在尝试弄清楚如何使用拉取请求过滤器,所以这些都没有显示。
我当前显示所有打开的拉取请求的过滤器是:
is:open is:pr 用户:sort:created
我可以修改以显示特定的回购或回购:
is:open is:pr 回购:/回购:/ sort:created
有谁知道我如何过滤以显示除了我不感兴趣的所有回购协议?
您可以使用 -
来排除子集:
org:Google is:open repo:is:pr -repo:google/ggrc-core -repo:google/protobuf
检查:https://help.github.com/articles/search-syntax/#filter-qualifiers-based-on-exclusion
我管理着几个 Github 组织,其中 1 个组织有 119 个回购协议 - 在这 119 个回购协议中,有 4 个我对打开拉取请求不感兴趣。
我正在尝试弄清楚如何使用拉取请求过滤器,所以这些都没有显示。
我当前显示所有打开的拉取请求的过滤器是:
is:open is:pr 用户:sort:created
我可以修改以显示特定的回购或回购:
is:open is:pr 回购:/回购:/ sort:created
有谁知道我如何过滤以显示除了我不感兴趣的所有回购协议?
您可以使用 -
来排除子集:
org:Google is:open repo:is:pr -repo:google/ggrc-core -repo:google/protobuf
检查:https://help.github.com/articles/search-syntax/#filter-qualifiers-based-on-exclusion