I can see When the JIRA issue was last updated with the Updated field, but I don't see how I can get Who did the update. I would provide an easy way to see tickets in my filter that have had outside input and therefore may need my attention.
Update:
So, since I don't want to change the status of the ticket, would it still be possible to create a custom field (not hidden) that gets updated to the username of the user who last updated the issue using a custom event listener or a post-function? In addition, can this custom field be displayed in the JIRA list?
I am not a JIRA administrator, so I would have to ask them to create this and I want to make sure it will work before I give them the task.
I guess your best way to accomplish this is not to use the "Updated Field" which is just based on last update of an issue with no discrimination.
Most of the teams I know creates a custom event listener or a post-function to automatically "transition a ticket status" depending on the user who puts a comment on it. Some uses a hidden custom field which is automatically updated when other than the assignee updated the issue. Your filter will then use any of this options to show "Status = Waiting for Assignee".
So, since I don't want to change the status of the ticket, would it still be possible to create a custom field (not hidden) that gets updated to the username of the user who last updated the issue using a custom event listener or a post-function? In addition, can this custom field be displayed in the JIRA list? I am not a JIRA administrator, so I would have to ask them to create this and I want to make sure it will work before I give them the task.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes you can do it with a custom field like "Last updated by: " with a post-function/listener that auto updates it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@[deleted]I'm interested also whit this theme, My question is the next. How can I do for search who moved the issue? in console. not in JQL please.
Thank's.
Can you put me an expemple?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is an exampled script using Powerscript.
Add post function to all transitions of workflow and do bulk transition.
JFieldChange [] changes = lastIssueChanges(key);
number i = size(changes) -1;
if (i >= 0){
string fullname = ldapUserRecord("displayName", "(sAMAccountName=" + changes[i].user + ")");
string lastupdatedby = changes[i].user;
if (fullname != ""){
lastupdatedby = fullname + " (" + lastupdatedby + ")";
}
customfield_39271 = lastupdatedby; //Last updated by
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.