GitHub Octokit:如何使拉请求审查评论解决?



我正在寻找一种通过GitHub rest API通过Octokit标记评论为' RESOLVED '的方法。我很难找到这方面的文档。

到目前为止,我只发现如何在这里更新一个pull请求的评论,而不是将它们标记为已解决https://docs.github.com/en/rest/reference/pulls update-a-review-comment-for-a-pull-request

请指教。

你已经有正确的GitHub API的链接。只要在你的管道中调用它。如果你正在使用Jenkins,你可以使用HTTP请求插件进行调用。

的例子:

withCredentials([string(credentialsId: 'GitHubUserToken', variable: 'TOKEN')]) {
response = httpRequest customHeaders: [
[name: 'Authorization', value: "Token " + "$TOKEN"],
[name: 'accept', value: "application/vnd.github.v3+json"]
],
httpMode: 'GET',
validResponseCodes: '200',
url: "https://api.github.com/repos/{owner}/{repo}/pulls/comments/{comment_id}"
}

相关内容

  • 没有找到相关文章

最新更新