如何使用 github3.py API 创建 Pull Request?
How to create a Pull Request using github3.py API?
这似乎在 github web api 中得到了支持,但我在文档中没有找到示例,而且它似乎也没有在 API 中实现。
我错过了什么吗?是否可以通过 github3 创建 PR python API?
相关方法是Repository.create_pull:
http://github3py.readthedocs.org/en/master/repos.html#github3.repos.repo.Repository.create_pull
要使用它,请获取您感兴趣的 repo 的 Repository 实例,然后使用拉取请求头部的 ref 调用 'create_pull'。
这似乎在 github web api 中得到了支持,但我在文档中没有找到示例,而且它似乎也没有在 API 中实现。
我错过了什么吗?是否可以通过 github3 创建 PR python API?
相关方法是Repository.create_pull:
http://github3py.readthedocs.org/en/master/repos.html#github3.repos.repo.Repository.create_pull
要使用它,请获取您感兴趣的 repo 的 Repository 实例,然后使用拉取请求头部的 ref 调用 'create_pull'。