0

如何检索拉取请求中的所有审阅者Probot?我正在使用typescript. 我也在听pull_requestProbot 中的事件类型。我想我需要打电话context.github.pullRequests.getReview来获取审稿人列表,但是由于我是 and 的新手NodeJstypescript我不确定如何调用以下函数。有什么输入吗?

另外,getReview接受参数{owner:,repo:,number:, review_id:},在我的情况下,我只有pr_number.

 getReview(
      params: Github.PullRequestsGetReviewParams,
      callback?: Github.Callback<
        Github.Response<Github.PullRequestsGetReviewResponse>
      >
    ): Promise<Github.Response<Github.PullRequestsGetReviewResponse>>;
4

2 回答 2

0

正如我在上面的评论中提到的,拉取请求上的列表评论不会返回评论,而是返回评论请求。

我找不到 REST API 端点,但您可以改为发送 GraphQL 请求

    query {
        resource(url:"https://github.com/probot/probot/pull/870") {
            ... on PullRequest {
                title
                url
                reviews(first: 100) {
                    nodes {
                        author {
                            login
                        }
                    }
                }
            }
        }
    }

您可以使用该context.graphql方法。有关其 API,请参阅https://github.com/octokit/graphql.js。确保使用最新版本的 Probot(当前 9.2.4)

于 2019-04-12T20:42:07.877 回答
0

对我们来说,它是在使用查询的requestedReviewer对象中。reviewRequestspullRequests

需要注意的一件事是审阅者可能是User或者Team我们需要利用扩展运算符... on User/Team让他们获得不同的字段。

query {
  compass: repository(owner: "YourOrg", name: "YourRepo") {
    pullRequests(states: [OPEN], last: 10) {
      edges {
        node {
          title,
          updatedAt,
          url
          mergeable
          author {
            login
          },
          reviewRequests(first: 10) {
            nodes{
              requestedReviewer{
                ... on User {
                  userName: name
                  login                  
                }
                ... on Team {
                  teamName: name
                }
              },

            }
          }
        }
      }
    }
  }
}
于 2019-10-30T01:20:31.980 回答