Filter issues by the user who closed them

前端 未结 2 1018
北恋
北恋 2020-12-31 03:23

I have started using Jira just recently and I am having trouble with the Issue Navigator. I want to filter the issues so that the list shows only those that were closed by a

2条回答
  •  醉酒成梦
    2020-12-31 03:51

    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.)

提交回复
热议问题