Hi,
I am trying to find a way to add bug age to an email notification that I am sending my teams with Jira automations.
I have created a variable - BugIssues- with these smart values:
{{#lookupIssues}}<tr><td><a href="{{url}}">{{key}}</a></td><td><a href="{{url}}">{{summary}}</a></td><td>{{status.name}}</td><td>{{now.diff(issue.created).days}}</td></tr>{{/}}
Then I have this email template:
<h3>Bug issues</h3>
<table border="0" width="60%" cellPadding="5">
<thead>
<tr>
<th align= "left">Key</th>
<th align= "left">Summary</th>
<th align= "left">Status</th>
<th align= "left">Age</th>
</tr>
</thead>
<tbody>
{{BugIssues}}
</tbody>
</table>
But the Age field doesn't get any value. Can anyone suggest ideas on how to continue from here? All help much appreciated!
Community moderators have prevented the ability to post new answers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.