pr_create creates a pull request on GitHub from the base branch to the head branch.
pr_create(repo, title, head, base = "master", body = "", draft = FALSE)Character. Address of one or more repositories in "owner/name" format.
Character. Title of the pull request.
Character. The name of the branch where your changes are implemented.
For cross-repository pull requests in the same network, namespace head with a user
like this: username:branch.
Character. The name of the branch you want the changes pulled into. This should be an existing branch on the current repository. You cannot submit a pull request to one repository that requests a merge to a base of another repository.
Character. The text contents of the pull request.
Logical. Should the pull request be created as a draft pull request (these cannot be merged until allowed by the author).