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
Hi there, I hope you're doing great. I'm new to Jira automation and would like to know how to list all assignees with un-done tasks separately in one Slack message.
I used the following format, and it returns the list of issues and the name of the assignee to the issue belongs to, out of ideas:
{{#lookupIssues}}
*{{assignee.displayName}}* <{{url}}|{{key}}> | {{parent.summary}} - {{summary}}
{{/}}
I would like to achieve the following goal, if possible:
Assignee display name #1
<{{url}}|{{key}}> | {{parent.summary}} - {{summary}}
{{/}}
Assignee display name #2
<{{url}}|{{key}}> | {{parent.summary}} - {{summary}}
{{/}}
Assignee display name #3
<{{url}}|{{key}}> | {{parent.summary}} - {{summary}}
{{/}}
I hope that it's understandable what I'm trying to do here. Thank you for any ideas, folks!