Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can you tell if a PR on Github that's merged has made it into a release?

Tags:

github

I'm looking at a PR on Github. It's been merged into Master. How do I know if this PR actually made it into a release?

Perhaps it can be done using git which would require cloning the repo to your local machine but that's a lot of work.

like image 259
Gezim Avatar asked Dec 26 '19 23:12

Gezim


Video Answer


1 Answers

I found the answer on how to get the tag of a merged pull request (takes a few clicks) and see which release a PR made into:

  1. Go to PR (this one for example)
  2. Copy the PR number, enter it in the search and choose In this repository option: enter image description here
  3. Click on a commit relating to that PR: enter image description here
  4. Now you'll see that tag number at the bottom of the commit message: enter image description here
like image 136
Gezim Avatar answered Oct 11 '22 09:10

Gezim