Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi,
I have created an automation where if my issues aren't updated for 3 days then an email would be triggered to inform this. I am attaching here a screenshot for the same.
The hindrance that I facing here is that I am not getting emails. Help required!
Hi Deepak,
Are you getting any errors in the audit log?
The email not being triggered to you can be due to multiple reasons and can be found in the automation audits.
To search further, please click on validate query to verify if there are issues existing for your query(for which you want an email).
I personally would have written
"updated <=-3d"
Regards,
Anzar
Hi Anzar,
I did validate the query and it said 0 issues found.
The audit log says No actions performed.
The logic that I wanted to be workuing here is if the issue is not updated with 3 days then an email is to be triggered. What would be logic?
And for the current scenario my issues have not been touched when created(5days ago) so any email would have been triggered??
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I got the emails, I included the project name in the logic and changed the logic updated<=3days. Thanks Anzar
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Glad the solution worked :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Two questions about your use case:
I ask these questions as such reminder rules are normally run once per day, not every 5 minutes, and so I wondered if this was too "noisy" for your needs.
Next, your scheduled trigger contains JQL and that means each matching issue will send an email. Another way to solve this and to only get one email is to use the Lookup Issues action. For example:
These issues have not been updated in the last 3 days:
{{#lookupIssues}}
* {{key}}: {{summary}}
{{/}}
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.