Skip to content

Instantly share code, notes, and snippets.

@maxheadroom
Created July 7, 2014 10:04
Show Gist options
  • Save maxheadroom/248c9054aeb9cf056261 to your computer and use it in GitHub Desktop.
Save maxheadroom/248c9054aeb9cf056261 to your computer and use it in GitHub Desktop.
JIRA find tickets and all their sub-tickets
You need to have a free plugin installed to enable the sub-ticket filter function: https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner
Assuming you have a list of tickets that you want to monitor this JQL will find all the sub-tickets as well:
issueFunction in subtasksOf("key in (PKEY-5747, PKEY-5699, PKEY-5404)") OR key in (PKEY-5747, PKEY-5699, PKEY-5404)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment