i have many issues with "pull request" status. many of them are merged.
how do i search for my open issues under "pull request" status + not merged?
thanks
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.
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.