Hello,
I'm using stories to address a user goal, and each story has multiple sub-tasks that a lot of times are not all completed inside a sprint.
When I finish the sprint and start a new one with the same story, I would like to only see the sub-tasks that are not finished (hide the ones that were finished in the previous sprint).
Is this possible to achieve with an automation or something similar.
Thanks
Ricardo
Welcome to the Atlassian Community!
You can't hide the sub-tasks in an active story - they need to be shown on the board in order for a story to be classified as "done" when it, and all of its pieces
It's a bit like saying "I'm going to move my jigsaw from one table to another, but on the second table, I don't want to see any of the pieces I've definitely got in the right place". Your jigsaw will look incomplete even if you finish placing all the remaining pieces on the second table.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do it with a Quick Filter on your board.
First - include all the Standard Issue types.
Second - remove all the sub-tasks that were carried over from previous sprints.
Third - add back in sub-tasks that haven't been completed in the current sprint.
issuetype in standardIssueTypes() OR issuetype in subtaskIssueTypes() AND NOT resolved <= endOfDay(-1d) AND sprint in closedSprints() OR issuetype in subTaskIssueTypes() AND statusCategory != Done
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ricardo Costa welcome to the Atlassian Community!
If the team is not able to complete a sub-task within a sprint, then I would consider breaking up the stories/tasks into even smaller chunks of work.
You would need and issueFunction in your JQL filter which is not available natively.
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.