Is it possible to cherry-pick all pending PR from github?
Let's say I have 4 PR from 4 different forked repositories waiting for review. I need to apply all of them to the latest source code.
PR#65 Do something
PR#61 Notify this
PR#55 Fix that
PR#42 Show there
I know that I can git remote add
all repositories and cherry-pick them one by one. However, I believe there would be easier/shorter way to cherry-pick all pending pull request which I don't know yet ;)
Thanks in advance