Hi all!
I need to filter the issues where last comment author is user in custom field (i.e. tempCF).
the issueFunction in commented("by user") is working with the user ID.
How can I use a custom field here?
I think you made that work for the case where you name a particular user, or for the current user, but you can't do what you actually asked for - which is just to find the issues where they are the same.
If you actually need that you could write a new JQL function, but it would not be able to do it using a "pure" lucene query (so slow).
Or you could do a hidden script field which just marks whether they are the same, and query on that (or write a function which is an alias for querying on that).
actually, I dont think that could fast write hidden scripts with such a checking because of being very new in groovy scripting. till this moment it works as I expected (we need to automate email approving process)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
(edited)
issueFunction in lastComment("by currentUser()") and assignee = currentUser()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No. The user in CF is not static, for every issue is differ, and I need to create a filter to use it in Automation rules, so CF content must be called for comparison, not particular user
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then you can have a look to : https://confluence.atlassian.com/jirasoftwarecloud/advanced-searching-functions-reference-764478342.html
and look for the JQL functions returning a "user" and see if one matches what you need ? without more details I'd go for currentUser() but it is not necessarily what you're looking for
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
can I do smth like this?
issueFunction in lastComment("by currentUser()") AND "tempCF"= currentUser()
but there are no results (but I have issues matching the query)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just tried that with the assignee (system) field and it worked correctly :
issueFunction in lastComment("by currentUser()") and assignee = 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.