A command-line tool that makes git easier to use with GitHub.
-
Updated
Aug 24, 2020 - Go
The GitHub API provides endpoints for users to consume GitHub data as well as make changes on a user’s behalf. The latest version is v4, the GraphQL API. The GitHub GraphQL API v4 represents an architectural and conceptual shift from the GitHub REST API v3 and allows for users to craft queries of the exact data they need.
PullRequest.edit does not allow a draft attribute:
def edit(
self,
title=github.GithubObject.NotSet,
body=github.GithubObject.NotSet,
state=github.GithubObject.NotSet,
base=github.GithubObject.NotSet,
):Describe the bug
It currently seems to be impossible to add a new public key to user's account using GHMyself. POST /user/keys is the relevant GitHub API endpoint.
To Reproduce
Read docs on GHMyself and observe the method not being present
Expected behavior
`GHMyself::addK