将图像添加到拉取请求评论

Add image to pull request comment

我正在使用 github3.py 库在来自 csv 文件的列字段的拉取请求中创建评论。我想在评论中添加图像以及列的输出,但我找不到执行此操作的方法。我读过使用 PIL 打开图像,但 .create_comment() 只需要一个字符串值。有什么提示或指点吗?

failed_validation_lst=[]
        with open(reportOut, 'r') as f:
            reader = csv.reader(f, skipinitialspace=True)
            headers = next(reader)
            for row_number,row in enumerate(reader,2):
                for column, val in enumerate(row):
                    if val == 'True':
                        failed_validation_lst.append(headers[column])
                failed_validation_string = '; '.join(failed_validation_lst)
                repo.issue(row[0]).create_comment(failed_validation_string)

GitHub API 不支持这个。评论拉取请求与 commenting on a issue 相同。您需要将图片托管在别处并使用图片标签 markdown 来显示它,例如,

![image description](http://image-hosting.com/path/to/img.jpg)