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 Community,
I was doing some research, but did not really find a clear answer.
Basically, I would like to have something similar to the "Subscription of Filters". But instead of the delivery to my mailbox, a ticket should be created with the listed tickets.
I.e., is there a standard way (w/o scriptrunner or addons) to
- automatically create a ticket
- and insert a list of tickets (selected within the automation with JQL or IQL) as table into that ticket
- (alternatively, I would be fine to have a CVS/Excel of that table attached to the ticket)
Thanks in advance.
You should be able to do that with Automation for Jira. You could try something like:
{{#lookupIssues}}
| {{key}} | {{summary}} |
{{/}}
There are limitations though. I recommend reviewing the documentation to make sure it will work for your use case.
Thx @Ivan Lima ! I've just 'upgraded' my way of handling similar case :)
Notes:
- {{key}} might be enough -> with Jira smart links it will hold the data for key, status, summary, in my setup I left the 2nd column to add notes to those tickets
- if you want check for cross-project work, this needs to be global rule - I started in my target project for this task but it wasn't returning any results, with global rule I got the expected results :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ivan Lima That's a good suggestion.
In my case it will not work, though, because I need some custom fields to be displayed as columns. But you mentioned the "limitations".
I will try the IQL approach. I think, it should work. Will report, once I have it tested.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can get custom field data as smart values, even if the issue in the JQL lookup won't return the custom field, which should show as blank.
For reference:
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.