Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira Automation Smart Value to email/slack all sub Issues in a List/Epic/Version

Kenny Dickie April 20, 2020

Using Jira Automation, I'm looking for a way to send an email/slack of all the issues in a Project Version.

I can get the version details using the version. smart tag. 

I can then branch to find all Issues in that fixed in version.

I can create an email that has the version information but I'm not sure how I can include information for each issue that's in that version.

 

Is there perhaps a way to store a global variable that I can append smart tags to in the branch issue loop and reference that in the email step at the last step?

1 answer

0 votes
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
June 26, 2020

Hi @Kenny Dickie 

Sounds like you have all the pieces and just need to knit them together.  How about this:

  • Trigger on version released
  • Action to lookup the issues with JQL for the FixVersion
  • Use list iteration to create a table of the values using HTML in the email.  Maybe something like:
Here is the list:
<ul>
{{#lookupIssues}}
<li><a href="{{url}}">{{key}}</a></li>{{/}}
</ul>

Here is the documentation on smart value lists if you need more information: 

https://support.atlassian.com/jira-software-cloud/docs/smart-values-lists/

 

Best regards,

Bill

Suggest an answer

Log in or Sign up to answer