Is there any query that can be used to get the name of the user who marked a story as done or completed. Thanks!!
@Prateek Grover Please try doing these
project = TEST and status CHANGED to "Done" BY ( Your user name) these will give you all issues closed by that particular user.. you can create filter for multiple users.
or you can try doing these
in Jira automation create automation and trigger it whenever an issue is transacted to Closed or completed .. then you can have
{{initiator.displayName}}
you can store these value in custom Field and then create a filter to see all closed issue..and you can view your user who closed issue in custom field .
Hi @Prateek Grover ,
welcome to the Atlassian community!
Please try the following JQL
issuetype = Story and status was in (Resolved,Closed) by "USERNAME_OF_SPECIFIC_USER"
Resolved and Closed values could be different based on your workflow.
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Fabio Racobaldo _Herzum_
Thanks for your prompt response!
To be more precise ( issuetype = Story and status was in (Done) by "Prateek_Grover")
Is the above syntax correct?
Regards,
Prateek Grover
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.