In git/github I want to propose a change to a single file.
To do so, I
- fork the repository
- clone the repository locally
- make the changes and the commit on a new feature branch
- push the feature branch to my forked repo
- create and merge a pull request to merge the changes from the feature branch to master
Now how can I programatically (via API) create a new pull request to merge the changes I have put in the forked repo to the original repo? How to do that?
The documentation only seems to handle the case when it is the same repository.