Hi, Im trying automation which will send a list of all the tickets released in a fix version to my Slack. This is the rule I used, the problem in I'm getting the message in Slack but without any ticket key in it, how can I achieve this?
**New version released!**
Version: {{version.name}}
Tickets:
{{#each issues}}
* {{key}} - {{fields.summary}}
{{/each issues}}
The Slack message I'm getting:
**New version released!**
Version: TEST - Release list notification
Tickets:
Expected message:
**New version released!**
Version: TEST - Release list notification
Tickets: TEST-01
TEST-02
TEST-03
Hi @Karthik
This should work:
**New version released!**
Version: {{version.name}}
{{#lookupIssues}}
* {{key}} - {{summary}}
{{/}}
Ste
Yes!!, @Ste Wright this is working thanks a lot. Is there any chance that these keys get a hyperlink to it and also to have the respective scope link of these tickets in the list?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Karthik
Sure, this should work:
{{#lookupIssues}}
* <a href="{{toURL}}">{{key}}</a> - {{summary}}
{{/}}
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.
Hi @Ben Finn thanks for responding, tried this yet not getting the tickets list.
**New version released!**
Version: {{version.name}}
Tickets:
{{#lookupIssues}}
{{issue.key}} - {{issue.summary}}
{{/}}
**New version released!**
Version: TEST 2 - release list notification
Tickets:
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.