Is it possible to only send Jira ticket notifications during certain hours, or pause these during certain hours?
We've got an out of hours team who need to receive these emails, but we don't want them to be flooded with them during the day when these aren't relevant to them.
Hello @Leigh Bartlett
Unfortionaly this is not possible by default.
I had the same issue, the solution is tricky.
You create automation rules ad there you would define when you want to be notified and you would add a condition JQL that matches are those working hours or not.
For example Mon-Fri work hours 8-22, I have one day more beacuse my server has sunday set as first day of the week.
(created >= startOfDay("8h") and created <= startOfDay("22h") ) and created >=startOfWeek(1d) and created <=startOfWeek(6d)
BR, Olga
Hi Olga,
I have tried this condition under Automation to assign an agent based on the working hours but it doesn't seem to work for me.
(created >= startOfDay("7h") and created <= startOfDay("21h") ) and created >=startOfWeek(1d) and created <=startOfWeek(5d)
Can you suggest some solution for it?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @monas
have you tried running this JQL in issue search advanced? To see if any issues match your search
Can you send a screenshot of your automation? Blur any sensitive data.
BR, Olga
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is the automation rule which I have configured. PFA the screenshot.Please let me know what I'm doing wrong here and how I can make it work on Jira service desk. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @monas
I don't own cloud, but rule looks good, automation rule should have logs or history.
To check the status of your rules:
From your service desk project, select Project settings () > Automation.
Hover over the rule you want to check upon.
Select ••• > View log
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does this look right to notify the user of an issue raised after 5pm, and before 9am?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Leigh Bartlett
This should do it
created > startOfDay("17h") or (created >= startOfDay() and created < startOfDay("9h"))
BR, Olga
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.