Hello,
I've created automation "When a task is near due → send email reminder (3days)".
Rule runs great with e-mail body like below:
"
Hello {{distinctAssignee.displayName}},
The following issues are due within next 3 days:
{{#lookupIssues}}
<a href="{{url}}">{{key}} - {{summary}}</a>
{{/}}
Regards,
Jira Automation
"
I want however to add Project name before list of issues. To separate issues by projects like below:
"Project1 name:
-id1
-id2
Project2 name:
-id1
-id2 ... etc
Any Idea how to solve it?
Regards.
Hi @Piotr Nowak
Do you have a known list of projects to group by?
Kind regards,
Bill
Perhaps you could use 2 lookups (one for each project) and store the results in a variable?
Never tried, so not sure, but it might work. Would roughly look like the following:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank You for quick reply.
This acctually might work to reach the target, however looks like a lot of setup and further supervision, especially with huge number of projects. I'm trying to find some more global solution. If there will be no other way, I'll go after your sugestion.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Depending on your automation version you could probably create a list at the start of the automation and then go through each entry in that list (say, of projectkeys) via the smart value branch.
Result is:
Which means, you can probably then use the JQL described earlier, but replace the project keys with {{p}} within the branch. Perhaps. Again, untested, all.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Piotr Nowak
Welcome to our Community.
I am not sure about how to implement your requirement. What I did before for similar requirements is as follows. Maybe it can give your some hints.
Project1 name
Issue id1
Project1 name
Issue id2
Project2 name
Issue id3
Project2 name
Issue id4
JQL is ordered by project name field.
BTW, I may also prefer to using the email subscription of a jira filter to fullfill this requirement.
Thank,
YY哥
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.