You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.