I\'m not sure, but I have a vague memory of creating a github pull request with \"Issue 4\" or something in the title, and it automatically attached itself to Issue 4 in the
You can create a Pull Request from an existing Issue with the Pull Request API:
$ curl --user "smparkes" \
--request POST \
--data '{"issue": 15, "head": "smparkes:synchrony", "base": "master"}' \
https://api.github.com/repos/technoweenie/faraday/pulls
This creates a pull request:
technoweenie
at project faraday
(https://api.github.com/repos/technoweenie/faraday/pulls)synchrony
branch in smparkes
' fork ("head": "smparkes:synchrony")master
branch in technoweenie
's fork ("base": "master")smparkes
(--user "smparkes")