Is it possible (or even smart) to pack changes for multiple repositories into a single pull request on Github? Or would it be better to make two separate pull requests?
In my specific case, I am adding a new feature to Paris, the simple Active Record implementation built on top of Idiorm. But the change in Paris also requires a change in Idiorm. Idiorm and Paris are from the same author but live in different repositories.
Can I (and should I) make a single pull request? Or do I need to make two, and then comment in the second pull request that it won’t work unless the first changeset has been merged on the other repository?
From what I can see of GitHub pull request, this operation is linked to a single GitHub repository:
Only one base repo can be entered.
So in your case, a note mentioning the dependency seems the relevant option here.