I am trying to write a jql to identify who moved a ticket into a specific field. such as there is column A and column B. I want to see all the bugs that Person p moved from column A to column B. Is that possible?
Hello @James Doggett
This is something which is not supported out of box, because you can use a query like
status change from A to B by <userX>
But in this case you have to mention the user in the JQL itself. So this information is not populated in the issue field and thus not available in the issue navigator. What you can do is to have a custom field of type "user picker" and populate this field as part of the post-function of the transition to "Done"
What do you mean that somebody moved a ticket into a specific field? Do you mean who updated a custom field? What are columns A and B?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To give a better description, we have a column on our board for "ready for qa" and then "Done". I want to find out who moved a bug from "ready to qa" to "done".
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah,ok. Columns are mapped to statuses. You should look statuses from each column and write a query like this
status changed from Column1status to Column2status by userlogin
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.