I need to send email for filter results and I want to use Jira automation and not filter subscription. The challenge is to have single email including filter results (like the filter subscription) but let's say we have daily basis schedule then I don't want to receive in email what I have received yesterday and I only want to get the new tickets all in single email.
Note my main concern is to have single email for filter results in Jira automation tool
Assuming you are looking for an idea as to how to implement the automation, you can do below
The following tickets were updated in the last 24 hours:
{{#lookupIssues}}
- *{{key}}* - {{summary}} (Updated: {{updated.format("yyyy-MM-dd HH:mm")}})
{{/}}
Thanks Vishal for the helpful answer, here's what worked for me: add schedule trigger --> add lookupissues action --> send email with {{#lookupIssues}}.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you just add AND created >= -24h to whatever JQL you are using to filter the results, this will only fetch issues that were created in the last 24 hours, and if your rule is scheduled to run once every 24 hours then this should only find the issues that were created between now and the last time the rule was run.
Hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
actually here I'm using custom date and the jql filter is for outdated tickets, I will keep your answer in mind for any future requirements, thank you!
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.