You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Try the following:
Caveat: works with Bitbucket, not sure about other tools (see attached)
Merged Issues:
Open Pull Requests:
Note: Jira shows an error in the JQL, but does allow you to save as filter, e.g., filter=######
Reference: https://confluence.atlassian.com/adminjiracloud/integrating-with-development-tools-776636216.html
On cloud version doesn't work. get error:
For "development[pullrequests]" use "development[pullrequests].all" or "development[pullrequests].open"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You'll have to do a little bit of fancy JQL for it. If you've integrated Stash/Bitbucket/Whatever properly, you should be able to see it with a search on issues' properties. Example, for my on-demand instance, this JQL returns any issues that have not been resolved (so the issue is still open) with a non-merged pull-request associated with the issue:
issue.property[development].openprs > 0 AND (status != done OR resolution is EMPTY)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
In standard JIRA Cloud and BB Cloud integration issue.property[development] doesn't exists
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is this for JIRA or Bitbucket? I'm kinda confused. Is Pull Request an issue status? If yes, a simple JQL can do what you want, I just want to make sure What is MERGED in your context?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.