You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Team,
In JIRA Software project I am trying to create automation rule for SLA breach, wherein remainder should be sent to a particular group before 1 day of SLA as email notification and also comment in the ticket.
Regards
Dinesh V
Hi @DINESH,
Jira's automation has some limits for the execution, so if you have the Standard package, you won't be able to automate much there. The community leader answered this question in more detail here → Jira Automation, usage limits
I would like to recommend the SLA Time and Report for Jira add-on. Here you will be able to set up your custom notifications for breached or exceeded SLA for any assignees and groups in comments to issues (+email) or on the SLACK channel.
You can use the 30-day trial to test the add-on yourself.
This app was developed by our company, so if you require supplemental information, please contact me, I will be happy to assist you.
Hi @DINESH,
SLA configuration is rather a feature of Jira Service Management and better supported there, in the sense that it's easier there to use the SLA timer to select issues that are ablout to breach. In Jira Software, you could mainly use the due date (or another date custom field) as a target for issues to be delivered on time.
Having said that, the principles for your automation would still remain the same. The rule might look somewhat like this:
In the trigger, you should specify a JQL filter to retrieve the issues that are about to breach the SLA in a day. Using the due date, that might look like this:
resolution = unresolved and due <= endofday(1)
this will fetch all issues with a due date before tomorrow 23:59 (more or less) that are still open. Be aware that if the issue will not be fixed before 9 AM on the next day, the email and comment will be added once more (and again) until the issue gets resolved.
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.
Hi @DINESH - Since you're on a software project, I'm assuming that "SLA" actually refers to a due date of some kind?
Assuming you're using Due Date to capture this info, you could set up automation like this:
statusCategory != Done AND dueDate < 1d AND dueDate > startOfDay()
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.