I need to check whether my team fills Work Description field. I thought I could search through issues checking whether the worklogComment field has "No description" value but I'm not getting the results I wanted.
I used advanced search:
assignee = currentUser() and worklogComment ~ "\"No description\""
and I'm getting the
reply where I have intentionally created an issue assigned to myself, logged work and left the Work Description field unfilled which leaves the field with "No description" text on default.
Where's the catch? Please advice.
try:
worklogComment is empty
Actually that return no result. And when I put a specific string in the Work Log Description fields, say "test123" and look for it with:
assignee = currentUser() and worklogComment ~ "test123"
it doesn't get anything either.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is it actually assigned to you when you test the jql? If you remove the assignee condition in your JQL do you get the issue returned?
e.g.
worklogComment ~ "test123"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Randy,
yes: worklogComment ~ "test123" returned jira issue I was looking for. It seems that no assignee is necessary for that search.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can of course also search for
worklogAuthor = currentUser()
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.