Dear community,
I want to have an automation to send an email reminder to myself with a list of outstanding subtasks.
So far I have:
1. When: Schedule -> every day at 9:00 AM
2. Then: Lookup issues, JQL:
issuetype = Sub-Task AND assignee = "SL" AND status = "WIP"
3. And: Send email. Body of the email is as follows:
Below is a list of all the subtasks awaiting your input:
{{#lookupIssues}}
š <b>Ticket key</b>: <a href="{{url}}">{{key}}</a>
š <b>Ticket summary</b>: {{summary}}{{/}}
In my test, the email did send and the intro text was included, but the list is blank. The Lookup issues action did return 5 results when validating query though.
I have a similar automation set up in another project to email a list of issues matching a JQL where I used the identical email template and it does work there. I wonder whether it's because the list of issues I'm trying to pull here are subtasks...
Any help is appreciated!
For this use case would a filter subscription not be preferred? Simple and does not chew up automation limits.
but if you want/need automation....
<ul>
{{#lookupIssues}}
<li> <b>Ticket key</b>:<a href="{{url}}">{{key}}</a></li>{{/}}
<b>Ticket summary</b>: {{summary}}
</ul>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks very much! Have not considered using filter subscription at all (you can tell I'm fairly new to Jira:)).
This feels like a much more elegant solution, appreciate your help!!
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.