I want to create a kanban board, which displays only issuetype = Task with sub-tasks under the parent task if there are any for the parent Task.
The Script Runner plugin has some subTask functions for JQL, if the plugin already there in your jira, just you can create a filter like
project = XX AND issuetype = Task and issueFunction in hasSubtasks()
Hope it solves your problem.
@Suhas P it is not working for me.
But i can't see any sub-tasks, only parent issues, which type is Task.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi I edited my answer above. You need to also include the sub task type in ten filter. Then swim lanes based on Stories will work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yoy can use simple query "project = XXX" and use Swimlanes based on "Stories". Swimlane will show up issues such that oneparent issue per swimlane and all its sub-tasks under it.
If you want to take more specific filter for subtasks, you need to specify the sub-task type in the filter like say
project = XXX AND issueType in (Task, subtask)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mikk
You've almost answered your own question, without realising it. You would create a filter with
issuetype = Task
and save it. Then use that filter as the filter for your Kanban board
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.