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}}
{{/}}
Hi @John Funk
No....I just tried that again, but all it returns are the keys, no summary.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
sub out the word summary for the key just to see if that works.
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.
I am using this with no problems at all:
<ul>{{#lookupIssues}}
<li><a href="{{url}}">{{summary}}</a></li>{{/}}</ul>
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.
Awesome! Glad it worked for 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.
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.