有没有办法可以通过命令行在Github Pull Request上发表评论?我的想法是,我希望Jenkins发布有关Pull Requests的评论,并附上脚本结果的摘要。
答案 0 :(得分:1)
答案 1 :(得分:1)
这完全是可能的,只是卷曲。
curl \
-X POST \
-H "Accept: application/vnd.github.v3+json" \
-H "Authorization: Bearer $GITHUB_TOKEN" \
https://api.github.com/repos/octocat/hello-world/issues/42/comments \
-d '{"body":"Hello Github!"}'
在https://docs.github.com/en/rest/reference/issues#create-an-issue-comment
上了解有关正在使用的API的更多信息。 注意::这假设您在名为GITHUB_TOKEN
的环境变量中存储了个人访问令牌