How to create a customer ticket follow up process in Jira Service Management using Automation
Platform Notice: Cloud - This article applies to Atlassian products on the cloud platform.
Summary
To create a ticket follow-up process in Jira Service Management, you can utilize the Automation rule feature. This will allow you to efficiently handle tickets that are on the "Waiting for Customer" status before closing them.
Environment
Jira Service Management Automation Cloud
Solution
To set up a follow-up/reminder process for customer tickets that have been in the "Waiting for Customer" status for x number of days, you will need to create multiple rules using automation. It is important to understand that using a single automation rule may not be sufficient to achieve the desired outcome.
When an automation rule adds a comment for no response, the "Updated" field date value is updated to the current value in the ticket. This means that your automation rule will not run separately as required to send the customer a second reminder; instead, it might send out the first reminder. To prevent this scenario from occurring, you can incorporate a new status such as "1st Follow-up" or "2nd follow-up" in the workflow. This will allow you to send multiple reminders/follow-ups to the customer before closing the ticket. This approach aligns with our practices here at the Atlassian Support team.
Here is the configuration for the automation rule to send the 1st reminder/follow-up to the customer when the ticket is in the status 'Waiting for the customer' for 5 days:
Rule 1:
Kindly use the below JQL to update the customer if the status remains the same for 5 days:
- For the Scheduled trigger, Select frequency as 1 day.
Check the JQL option below and specify the below JQL:
JQL Querystatus = "Waiting for Customer" AND NOT status changed after startOfDay("-5")
- Followed by Add comment to issue action - Sending the 1st follow up
- Followed by Transition the issue to action to "1st follow up"/"Resolved" status.
And here is the configuration for the automation rule to send the 2nd follow-up to the customer and transition the ticket to the "Closed" status when the ticket is in the "1st follow-up"/"Resolved" status for another 7 days:
Rule 2:
Refer to the below JQL to transition the status to "Resolved" if the status remains as "Resolved" for 7 days:
- For the Scheduled trigger, Select frequency as 1 day.
Check the JQL option below and specify the below JQL:
JQL Querystatus = "Resolved" AND NOT status changed after startOfDay("-7")
- Followed by Add comment to issue action - Sending the 2nd follow, followed by Closing the ticket.
- Followed by Transition the issue to action to "Closed" status. And, you may update the "Resolution" field as well.
You can refer to the following links for more information on adding a new status/transition in the workflow:
To learn more about available smart values, refer to the document: