git-review
git-review copied to clipboard
command 'close' not working if issues are closed for that repo
This actually a GitHub bug, which I already reported. Just waiting for the fix.
They fixed it by adding an option to close a PR without trying to close the issue. So in our code we need to change github.close_issue(repo, request.number)
to github.close_pull_request(repo, request.number)
.