Hi,
I am trying to generate an email when a sprint is closed with a list containing issue key, status & last comment.
I am using lookupIssue for this, the other fields are populating fine. But Iam unable get the last comment with {{comments.last.body}}
please let know if I am using the right smart value
Thanks
Hi @Vikram K
This works for me:
{{#lookupIssues}} {{key}} {{comments.last.body}} {{/}}
Adding my automation rule and it's output below: (NOTE: my trigger is a "SCHEDULE")
I even tried the same code block that you've mentioned in one of your previous comments
Gave me this output
Hi @Vikram K
I tried this and it also didn't work for me, strange!
Can you show us how you are trying to visualise the data once looked up?
Ste
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am having a list to show the issues in the Sprint. The key & summary seem to come up right, last comments seems to have the issue
Sprint Summary
<ul>
{{#lookupIssues}}
<li>{{key}} - {{summary}} - {{comments.last.body}}</li>
{{/}}
</ul>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Vikram K
That does work for me, both your version and the option @Jehan Bhathena provided above.
And it works in both the comment field, and in email.
Ste
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.