gpt4 book ai didi

github - 查找特定用户合并的拉取请求

转载 作者:行者123 更新时间:2023-12-04 01:09:16 28 4
gpt4 key购买 nike

是否可以通过谁合并它来过滤 github 中的拉取请求?

就像是:

is:merged is:pr mergedBy:username

但这不起作用

编辑:
这就是我想出的(我的目标是在我们的项目中创建一个最活跃的 codereviewers 的顶级列表):
var result = {};
$.get("/api/v3/repos/atg/atgse/pulls?state=closed&per_page=100", function(pulls){
pulls.forEach(function(listPullItem){
$.get(listPullItem.url, function(pull) {
if (pull && pull.merged_by) {
result[pull.merged_by.login] = result[pull.merged_by.login] || 0;
result[pull.merged_by.login] ++;
}
});
});
});

最佳答案

由于它似乎无法直接通过 GitHub 搜索过滤器获得,因此您需要 list the pull request with the GitHub API ,并仅选择带有 merged_by.login 的那些你要。
您在 this coffee script 中有一个示例它能够解析 JSON 答案并遍历拉取请求条目。

关于github - 查找特定用户合并的拉取请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29277128/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com