JIRA — Searching for tickets that have been commited to a development branch

I recently noticed a good way of searching for tickets in JIRA that you may find useful.

If you wanted to know all the tickets from the previous sprint that had been completed and merged into whichever repo you use, or contain a pull-request, then simply do a JQL query as follows:

project = DEV AND (issue.property[development].prs > 0 or issue.property[development].commits > 0)

This is done by searching for commits or pull-requests on the development panel that you would find in your jira tickets (as long as you have the integration set up for it to do so).

Here is an example screenshot of where you can find these.

Some other queries you can do are:

issue.property[development].commits
issue.property[development].prs
issue.property[development].openprs
issue.property[development].reviews
issue.property[development].failingbuilds

Hope you found this useful!

All the best,

Umer

Scrum Master