Using the automation features, I am creating an email triggered from a transition in JIRA Cloud, Business type project. I want to return a list of the Linked issues and present them in a list form (not separated by commas) and their summary. Not having luck with anything I have tried. Any suggestions?
Hello @Leanna Bremenkamp
Please show us the Automation you have created.
You should be able to get what you want with
1. A Lookup Issues action to retrieve the list
2. In the email adding syntax like this:
{{#lookupIssues}}
{{key}}: {{Summary}}
{{/}
I am creating an email to send out notice to a group and it returns values of multiple custom fields. The bold line is where I need to be able to call out the linked items key and summary in a list.
Automation:
Engineering has created {{issue.summary}} ({{issue.key}})<br><br>
JIRA items are making their way through. <br><br>
Related JIRA items:<br>{{issue.Linked issues}}<br><br>
<hr>
File Directory: {{issue.File Directory Path}}<br><br>
<hr>
PCB Quantity Required: <br>{{issue.PCB Quantity Required}}
<br><br>
<hr>
PCB Need in House by: <br>{{issue.PCB Need in House by:}}
<br><br>
<hr>
Prototype Build Date Requested: {{issue.Prototype Build Date Requested}}
<br><br>
<hr>
Please confirm the schedule to the group.
<br><br>
Thank you
Result:
Engineering has created SUBXT75 R1 Lev XB (ECAD-32)
JIRA items are making their way through.
Related JIRA items:
ECAD-29, ECAD-30, ECAD-31
File Directory: N:\Controlled Documents\Products\Panels\XT75\PCB\R1\BOM
PCB Quantity Required:
24.0
PCB Need in House by:
7/25/2024
Prototype Build Date Requested: 2024-07-26
Please confirm the schedule to the group.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Please show us the Automation you have created.
In order to include details about the linked issues in your email you are going to have to retrieve a list of the linked issues. You do that with a Lookup Issues action.
Before you generate the email use the Lookup Issues action to retrieve the list of linked issues
In the email change the syntax like this:
Related JIRA items:<br>
{{#lookupIssues}}
{{key}}: {{Summary}}
{{/}
<br><br>
<hr>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did try that previously and didn't return any results in the email.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I cannot provide any explanation about why it wouldn't work until you provide all the details of your rule. Images showing the entire rule and the details of each step are needed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry that was the entire thing. I just put that in the send email automation screen.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To help provide context for the symptom you are seeing, please post images of the following:
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Leanna Bremenkamp
We need to see all the steps in the rule in an image like this:
(This is an example of an entirely different rule.)
Then we need you to highlight each step in the rule and provide a screen image of the details of that step that appear on the right side.
And lastly we need you to go to the Audit Log:
Then find the most recent execution log for the rule that doesn't say "Config Change" for the status, and click on the Show More link on the right side for that entry.
Then provide a screen image of all the details in that entry. Here's an example.
Sometimes elements of a rule don't work as expected because of where that step is compared to the other steps of the rule. Sometimes there is a syntax error. We can't debug the rule without having the details of the entire rule, the details of each step, and the log for when the rule executed.
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.