Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does a closed pull request on Github mean that it was not merged?

Does a closed pull request on Github imply that the pull request is not merged? If no, is there a way I can determine if a pull request which was closed was merged or not?

Thanks.

like image 274
Kevin Avatar asked Mar 09 '23 16:03

Kevin


1 Answers

If no, is there a way I can determine if a pull request which was closed was merged or not?

A pull request has at the top of the page it's status. There's 3 possibilties:

  • open: pending, might need some change.
  • closed: refused
  • merged: accepted

So, if you can see Closed at the top, the PR hasn't been accepted: it hasn't been merged.

like image 193
math2001 Avatar answered Mar 12 '23 09:03

math2001