Filter issues by the user who closed them

强颜欢笑 提交于 2019-11-30 08:12:18

You can use 'status changed by':

status = Closed and status changed by username

From the JQL documentation:

The "CHANGED" operator is used to find issues that have a value which had changed for the specified field.

This operator has the following optional predicates:

  • AFTER "date"
  • BEFORE "date"
  • BY "username"
  • DURING ("date1","date2")
  • ON "date"
  • FROM "oldvalue" TO "newvalue"

(Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.)

Sorry, but the answer from Daria Trainor is not correct. You find Issues, where the status is closed and one of the transistions where made by the "username"

The correct one have to be:

status was closed BY 'username'

also possible:

status changed to Closed BY 'username'

then you also find issues, in a differnt state

if your workflow is more complex you can also limit like this:

status changed FROM Resolved to Closed BY 'username'

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!