I need to send a reminder email to an Admin if the last work log update was greater than 4 days old. Having issues with the correct setting for "updated >4d".
My search script:
project = IT AND issuetype = Sub-task AND status = "In Progress" and updated >4d AND assignee in (identification#) AND issueLinkType = "blocks"
Selected with checkmark = yes (Run a JQL search and execute actions for each issue in the query.) Selected with checkmark = yes (Only include issues that have changed since the last time this rule executed), (If I change this to unchecked the Query test still = 0 issues found). Rule has been published. Query test = 0 issues found. My last work log update\entry has been 6 days ago.
Thank you Mark. I updated the search script replacing updated with workLogDate and I still receive 0 results.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hmm - What if you try this:
workLogDate < -4d
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That worked. I have 1 response to my query. I will need to wait to see if a test email is received within the 1 hour rule to run. Why would a double negative time search return results but a single positive time search not?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It's just the way Jira works with relative dates. Jira interprets your initial query as greater than 4 days from now where the -4d is interpreted as 4 days ago.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Mark, thanks for that clarification! Working on getting the email to send\receive correctly now. You have been a big help. Thanks again.
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.