I would like to create an issue filter that shows stories in the current sprint that do not have any sub-tasks assigned.
Something like this...
fixVersion = earliestUnreleasedVersion("DSI") and type = Story and ...???
Where ??? ~= childCount < 1 or children = YES
JQL Tricks Plugin, a commercial one, has a hasSubtasks method that you can use for this.
you can also use the Craftforge JQL Functions Plugin to detect subtasks of a story:
and the best of all, it's Free :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just as an update: This Plugin is no longer free. It is now a paid app.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Solution without a plugin.
Use below query as a Quick Filter from the Board Configuration.
issueFunction not in hasSubtasks() AND issuetype != Sub-task
It will sort out every story which has No or Zero sub-tasks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Doesn't work. Error message received is that issueFunction does not exist
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Issuefunction is associated with Scriptrunner plugin
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.