Hello Atlassian Community.
I want to add an automation where a comment is placed on the card if worklog is not added for the day.
I want to run it on schedule every day at 10PM to check if worklogs were added for the current day and if not added, then I want to add a comment on the card.
I'm trying to figure out the JQL to fetch the list of issues where worklog wasn't added for the current day.
This query gives me the list of cards where worklog was added for the day, but I want the list where worklog wasn't added
JQL : worklogDate = startOfDay(-0d)
How can I achieve this?
Hi @Sriram R
The following JQL will give you all tickets that do not have worklog today, or not have worklog at all...
worklogDate != startOfDay(-0d) OR timespent is EMPTY
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.