I'm trying to make a Kanban board that has my issues, but for the "in testing" column I want to see not the issues that are in my name and in testing, but issues that only I've committed to and given to QA for testing. How can I do this?
Lets say the status where you've given the issue to QA is named "QA Testing" you could use following query.
status changed to "QA Testing" by currentuser()
This will give you all issues that were transitioned by yourself to that status.
"My" issues that I give to QA are not necessarily reported by me
I was able to just add a "Developer" custom field that keys off the username. Thanks
What do you mean that "committed to and given to QA"?
With your solution, do you have the developer field taking the assignee when it leaves the "in progress" field, or when it's first created/assigned?
This is exactly what I was looking for. Didn't know that you could search directly for status changed like this, thanks!
It looks like you're new here. Sign in or register to get started.