Tell me how to create a JQL query for when the status is "In Progress" and it hasn't changed for 3 days, so an email is sent. The project name is LGLN.
Hi,
The query you are looking for is
project = LGLN AND status = "In Progress" AND updated <= "-3d" ORDER BY updated DESC
Will give you the result that issues which are not updated in the last 3 days which are in "in progress status" . To send an email you can use automation and send the emails to the required recepients.
Thank you.
And what about the calculation for these 3 days, does it not follow or is it different from the SLA ? @GNarsimhagowda - Empyra
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.
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.