Hi,
I would like to know how the below-given scenario would work:
A script listener is configured to be executed when move event is triggered and only in Project A and Project B.
So with that said how does Scriptrunner identify which event is a move event from one project to another vs a move event from one issue-type to another in the same project.
Thanks in advance.
Hi Rathan,
I am not entirely sure what you are asking here but hopefully some of the below will help answer.
When a move event is triggered it will trigger an IssueEvent. This contains methods such as getChangeLog() and getEventTypeId() (see: IsssueEvent Docs).
With these methods it is possible to determine which event has been triggered and what processes the issue has been through including origin and destination states, the last would be the 'Moved' event.
If you are wondering what would happen if you moved an issue from a project that is not project A or project B into project A or project B then the event will still be triggered. This is the case for if you use the Project Key parameters or the Conditions parameter of a Script Listener.
If this does not answer your question then perhaps you could tell me what it is you are trying to do/avoid so I may gain a better understanding.
Thanks
Johnson
Hi John,
I guess I did not make my question clear my apologies. What would happen in the below-described scenario?
In Scriptrunner (JIRA) if a listener is configured for Project A and Project B to listen on Issue Moved event. Would the custom listener script execute when a user uses bulk move operation to change the issuetype with in the same project or would it execute when a user uses bulk move to move an issue from Project A to Project B?
Thanks,
Rathna
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The "move" event is not project specific, but does contain the information on what has changed.
In your follow-up question, you ask about "bulk move changing type" and "bulk move to project B". The answer is "it will run for both, because they are both move events from project A"
In every case, the event will contain a list of what has changed (project and/or issue type), so your listener code can work out what has been done quite easily.
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.