Hi
Am trying to do something like the below, but I want to show the Summary as well in the bullet pointed list. What is the syntax for that?
Hey team - we've got the following issues left in this sprint:
{{#lookupIssues}}
* {{key}}
{{/}}
Hi Curt,
Try this:
Hey team - we've got the following issues left in this sprint:
{{#lookupIssues}}
* {{key}} {{summary}}
{{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interestingly.....that doesn't work. but Summary is supposed to be an available field.
The plot thickens!!
Thanks!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well @John Funk that works a treat. Love it!!
and sure enough, wrapped up in "all your fancy stuff" summary does indeed get produced.
I had raised it with atlassian and their advice was to duplicate the JQL in a branch, which didn't solve the problem, and meant an email was generated per issue.
I've added in the key and it looks great!
<ul>{{#lookupIssues}}
<li><a href="{{url}}">{{Key}} - {{summary}}</a></li>{{/}}</ul>
Thank you!!!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Curt,
Are you able to try copy and paste this value into a log action, does that print the value correctly to the audit log?
Might be an email formatting issue?
Cheers.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that @frother good idea.
I tried it going into the comments section of an issue via a manual trigger. No go.
Yet, when I try {{Key}} or {{URL}} and even better {{Key}} and {{URL}}.....no problem. Just {{Summary}} doesn't seem to want to work with {{lookupIssues}}
Best I raise it with Atlassian I think.
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.