我正在开发一个工具来获取我组织的存储库中的所有拉取请求及其日期。我应该如何获取从我的帐户提出的拉取请求?
我使用了 pygithub 并使用了访问令牌并登录到我的 github 帐户,但无法获取我的拉取请求。
import os
from github import Github
my_token = "da0ab89dc50d9b2354e8f9c76*****74e0111"
ct_gh = Github(base_url="http://github.****.de/api/v3",login_or_token=my_token)
print("Connection to the server is done")
user_id = ct_gh.get_user()
print(user_id.name)
我能够获取我的用户名和详细信息,但无法获取我的拉取请求编号。