所以我用Python代码在Github上发布我的PR提交评论
# Create a table
table = f"""
| File Changed | Summary |
|--------------|---------|
{"".join(commit_summary)}
"""
# comment body for review comment
comment_body = f"""
{"".join([f"{line}" for line in summary])}
## Files Changed and Summaries
{table}
"""
comment_data = {
"commit_id": commit_sha,
"body": comment_body,
}
comment_url = f'https://api.github.com/repos/{owner}/{repo_name}/pulls/{pr_number}/reviews'
然而,在github的评论中,这个表是一个普通的文本,而不是一个好看的表,我打算显示
尝试问gpt和检查github文档,但我卡住了
1条答案
按热度按时间rbpvctlc1#
生成markdown表的泛型函数.
然后你可以使用这个函数来创建一个你想要的带有你特定的标题和数据的表:
将输出:
在GitHub markdown中查看时,看起来像:
当将正文发送到GitHub API时,您需要确保其格式正确。也就是说:请求的主体需要进行JSON编码。如果你使用
requests
库,当你使用json
关键字传递comment_data
时,这会为你完成,例如。requests.post(comment_url, json=comment_data)
,否则您需要正确编码您的有效负载。有关详细信息,请参阅:Posting a markdown table as Pull Request comment to GitHub using GitHub API