I think this can be done with Scriptrunner but due to the cost we are no longer allowed to use it. I run two teams in a kanban style using the concept of big things/little things. And want to show all the little things when we are working on big things. Other teams in the company don't work this way - and I really only want from script runner the ability to show the link and view related issues.
Is there anything else out there that might give me this at a more manageable cost - we have LOTS of jira users but only 20 who want this feature.
Thanks
Hi @Simeon Herbert -- Welcome to the Atlassian Community!
How much information do you need for the sub-tasks? There are a couple of out-of-the-box solutions depending on what you need...
You could create a filter, adding the sub-task column to the results, and that would give the parents and their sub-tasks. You could then select the link for a sub-task to drill down.
project = myProject
AND issueType = Story
AND status IN ("one status", "another status")
ORDER BY subtasks ASC
You could use Automation for Jira to create a query dynamically to get the sub-tasks.
project = myProject
AND parent IN ( {{varStoryList}} )
ORDER BY parent ASC, key ASC
Here is the list of sub-tasks:
<ul>
{{#lookupIssues}}
<li><a href="{{url}}">{{key}} - {{summary}}</a></li>
{{/}}
</ul>
Best regards,
Bill
So I am actually trying to create a board that shows both stories and sub tasks, but I only want them to show when the story is in status 1,2 or 3.
Trouble is I have to include the sub tasks status's too and then it all goes wrong. I end up with either stories not showing unless it has sub tasks or subtask showing irrelevant of the status of the story
I am using:
project = "AS" AND "Team Owner[Dropdown]" = "Build Team 2" AND (issuetype in (story, Subtask, task, Sub-task) AND status in ("to do", "Ready for 3 Amigos", "Ready for Dev", "In Progress", "Waiting for Review", "In Review", "Task Done","Ready for FQC","In FQC") OR issuetype = bug) ORDER BY flagged, rank
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Gotcha; you are definitely going to need a marketplace add-on for JQL to impact a board filter with a correlated sub-query you need, as @Kristian Walker _Adaptavist_ suggested...
At least until our vendor realizes this is basic, missing functionality that should have been included long, long ago. ;^)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Simeon,
My name is Kristian full disclosure I am from Adaptavist who is the maker of ScriptRunner for Jira Cloud.
I can confirm that if you want to use just the search features of ScriptRunner that we provide another plugin called Enhanced Search (JQL and Subqueries) which provides just the search features at a smaller cost and this may be something that will help you to achieve your requirements.
Otherwise, I do not believe that this type of search can be done out of the box with JQL in Jira Cloud but I can confirm that there are lots of other companies that make plugins to enhance JQL searches in the Cloud and you can see all of these in the page here to allow you to compare them and to see what will best suit your requirements.
I hope this information helps.
Regards,
Kristian
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.