Hi,
I have two different single select custom fields(ABC & DEF) for and two user(X & Y) (example:
1) custom field name : ABC
values in ABC custom field : 123
456
789
2) Custom Field name : DEF
Values in DEF Custom Field: 097
765
893
Note:
If select the Filed :ABC Value :456 & Filed : DEF Value: 893
it will auto assign to X.
and Select the remaining values in fields it will auto assign to Y.
any one can give me solution.
Community moderators have prevented the ability to post new answers.
Hello,
You would need a plugin for it. For example, you can use the Power Scripts add-on:
https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation
You can create a listener on the create and update issue events with a code like this:
if (#{ABC} == "456" && #{DEF} == "893" ) {
assignee = "user";
}You can find more info about listeners here:
I'm Using Adaptive Script Runner Plug-in , so please let me know how can i do with adaptive script runner plugin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is all basically the same. You need to create a listener on the update and create issue event.
Then here you can find how to take the value of an option field:
Here you can find how to assign an issue:
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.