Hi!
I set up a scheduled rule which runs lookup on issues resolved the day before, sums up the story points and sends the figure and the issues in a Slack message.
However, I cannot figure out a way to include a link to the issues. Usual things like {{issue.toUrl}} seem not to be working for the looked up issues. Could you advise me on this, please?
Here is the body of the message
{{lookupIssues.Story Points.sum}} story points were resolved yesterday:
{{#lookupIssues}}
* {{key}} {{summary}}
{{/}}
Hey there Yuliia,
We don't support all the functions and custom fields for the lookupissues action at the moment due to performance concerns (https://codebarrel.atlassian.net/browse/AUT-1996)
If you know your base URL you can simulate the toUrl call by using the format:
{{#lookupIssues}}
* https://codebarrel.atlassian.net/browse/{{key}}
{{/}}
Cheers,
Mark C
Here is what worked for me:
{{lookupIssues.Story Points.sum}} story points were resolved yesterday:
{{#lookupIssues}}
• <{{url}}|{{key}} {{summary}}>
{{/}}
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.