Hello all
I'm trying to create an automatic rule that notify the assignees that they have some tickets without update in the last 3 days.
I'm using the next JQL:
project = XXXXX AND issuetype in (Defect, Problem) AND status in (Submitted, Inquiry, "In Fixing", "In External Fixing") AND resolution = Unresolved AND updated <= -3d ORDER BY created ASC, updated ASC
The content of the Send email step is:
Hello {{assignee.displayName}}, good day!
Friendly reminder that your jira(s) ticket(s) is/are not updated in the last 72 hours: {{#lookupIssues}}
* {{url}} | {{summary}} {{/}}
Please take a look on this/these jira ticket(s).
The emails were send to all the assignees, but the content of the email is all the tickets, included the tickets of other users, my questions is if it is possible to filter the tickets by user/assignee.
Thanks in advance!
This scenario is difficult for Jira Data Center automation as it does not yet support Advanced Branches: https://jira.atlassian.com/browse/JIRAAUTOSERVER-749
At this time, the only workarounds I know are:
Kind regards,
Bill
Hello @Bill Sheboy Thanks!
Yes, I found similar questions and I came to the same conclusions as you.
Best Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I think this thread could help you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Mohamed, good day!
Thanks, but not at all... because I'm using jira data center and that thread is with jira cloud version.
My real issue is with the send email step, due now I have the complete list of issues but the send email step sends all the list to all the users I'm looking to find a way to only send the tickets assigned to each user.
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.