Vinay Veluri
Vinay Veluri

Reputation: 6855

GitHub: Pull Requests raised by me?

How can I view all the PR's raised by me -> especially count statistics?

Something like

Does GitHub provide stats for a specific user?

Upvotes: 1

Views: 918

Answers (2)

lord63. j
lord63. j

Reputation: 4670

PR's raised by me?

Login in github, just click Pull requests.


How many are merged?

copy and paste this in search bar: is:pr author:YOUR_USERNAME is:merged


How many are closed?

Do you mean unmeged? Use this one: is:pr author:YOUR_USERNAME is:unmerged is:closed Do you mean just closed? Use this one: is:pr author:YOUR_USERNAME is:closed


PR's raised to a specific repository?

Use this one: is:pr author:YOUR_USERNAME repo:YOUR_REPO


More details about searching in github help documentation

Upvotes: 3

Jenish
Jenish

Reputation: 588

Once you sign in to git online , you can see a tab named as "public activity" after click on your username at top corner, that list down all the PRs you created , merged etc

Upvotes: 1

Related Questions