Hey all I'm trying to build a board where the swimlanes are all of my epics and those swimlanes contain all the tasks in the given epic.
Thanks!
@Mitchell Cardwell, there are going to be some limitations here you can't overcome possibly but let's try this...
Board filter: project = CT and "Epic Link" is not EMPTY or (project = CT and issuetype = Epic and assignee = your.userid)
be sure to replace "your.userid"
Now set swimlanes to be based upon Epic.
let's see where that leads us.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Mitchell,
You can use the following JQL:
"Epic Link" is not EMPTY and assignee = currentUser()
This should return all issues belonging to epics that are assigned to your user account.
Hope this info helps!
Regards,
Arthur Gonçalves | Atlassian Support
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Clarifying I need all the issues in the Epic regardless of who they're assigned to. Thx.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is what I have so far:
project = CT AND issuetype in (Epic, Spot) AND assignee in (currentUser())
I want to refine that so it shows me only my Epics but then shows me the other issues (Spot) that are assigned to anybody in the Epic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried this...
project = CT AND issuetype = Epic AND assignee in (admin) AND (project = CT AND issuetype = Spot)
With no return.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And I figured it out...
project = CT AND issuetype = Epic AND assignee in (admin) OR (project = CT AND issuetype = Spot)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'm trying to obtain the same results
- Return all issues linked to epics that are assigned to a particular user (the issues could be assigned to any user - only the epic is assigned to the specified user) - I don't understand the suggestion above, or how to adapt this for what I want to achieve
e.g.
issuetype = Spot
assignee in (admin)
I want to obtain the same result as the below query for components, but adapted for Epic assignee rather than Component Owner
component in componentsLeadByUser(username)
I'd appreciate any assistance as really struggling with this. I work for a large company that does not allow use of plugins / extensions.
Thanks
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.