The JQL is driving me crazy! I am using automation for JIRA and I am actually using it to replace the default automation in JIRA, the one that was telling you: send a message for tickets that are in status waiting for customer for the last 5 days. Seemingly, I am replacing the rule: solve the ticket after 10 days the ticket is in waiting for customer status.
I need to run a JQL in automation for JIRA but always unsuccessful: either there is nothing found or the query finds tickets that do not comply with the rule itself. I've tried:
status = "Waiting for customer" AND updated <-6d AND updated >-5d
status = "Waiting for customer" AND updatedDate <-5d AND updatedDate >-6d
status = "Waiting for customer" AND updated >-5d AND updated <-6d
and a lot more....do you have any tips for me please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am also trying little tweaks on this formula but it is not working
(status = 'Waiting for customer' AFTER 10d) AND (status = 'Waiting for customer' BEFORE 11d)
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.