Hi, I would like to know if it is possible to automatically change the status of a service desk issue when someone assigns themselves to the issue?
I'm not an authority, but from what I've seen on these forums, if you host your own instance on your computer and are savvy with scripting languages, you can do that and almost anything else.
If you use the cloud-hosted solution, however, you can't make that kind of customization.
Regards,
Jim
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Jim is right - you'd want a listener to pick up "issue edited" and transition the issue through the right transition. Which you can't add to Cloud
What you could do is reverse it - have a workflow transition that sets the assignee to current-user, so when a user says "move to in progress", they don't have to think about assigning it to themselves.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks but there are multiple members of the team so I just wanted the issue to simply move to the "working on it" status when anyone in the team assigns themselves to the issue.
Seems like a simple piece of logic that has been be implemented into Jira?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nope, most people don't work that way, so Atlassian haven't implemented anything that can do it. Hence the comments about listeners.
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.
Listeners are global things, so your code would probably need to have "if project = X and issuetype = Y" type stuff in it (unless you really wanted this globally)
I'd use the script-runner to do this, but the other main (free) option is to write your own add-on to provide the function. (Bear in mind what Jim said - this is server only)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi all,
Is there any news on this matter? I have the same need. For example: I need to transition from "Unassigned" to "In Progress" once a user is assigned to an issue.
Thanks,
Roy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, @Nic Brough -Adaptavist- - I'm faced with the same requirement and we have a Scriptrunner installed. I'm new to Groovy scripting, can you help me how to implement it via Scriptrunner?
Update: Figured it out. Turns out "Listeners" are not the generic listener as I initially thought but there is s specific ScriptRunner Listener menu where I set the rule up via GUI. Thanks!
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.