I am looking to create an automation in Jira that sends an email, on a scheduled basis, of all unresolved issues associated with an epic. Is this possible using Jira Automation?
As an example:
Epic Key - Epic Name
Epic Key - Epic Name
I'm not sure if it's possible to group issues by Epics in an email. You can try this:
<table>
<tbody>
<tr>
<th>Epic Key</th>
<th>Epic Name</th>
<th>Issue Key</th>
<th>Issue Summary</th>
<th>Issue Status</th>
</tr>
{{#lookupIssues}}
<tr>
<td>{{epic.key}}</td>
<td>{{epic.Epic Name}}</td>
<td>{{key}}</td>
<td>{{summary}}</td>
<td>{{status.name}}</td>
</tr>
{{/}}
</tbody>
</table>
Please uncheck the option Convert line breaks to HTML line breaks in the More options section.
This rule will send issues data in a table sorted by Epic link.
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.