Can you elaborate on what do you mean by track assignee response? Do you mean when he changed the status or when he commented?
Status change can be tracked by creating respective JQL for it, and for comment either you can check last updated date. Since the issue is waiting for assignee, hence we can rely on last updated date. Else, as last option, you can check automation for JIRA add-on and create a rule as to whenever assignee responds, you receive a notification.
Thank you. I want track when he commented.
Example : 100 issue assigned to Mr X, So, I want to track how many Mr. X has attended and added his comment against issue.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @pradeep_singh ,
Usign ScriptRunner, to get the issues assigned to and with (at least) one comment of a user, you can try this query :
issueFunction in commented('by USERNAME') and assignee = USERNAME
Hope it helps !
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.