Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Set assignee according security level

Marzi Goodarzian
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 2, 2018

Hi

I want to adjust manager name of issue according security level name.

axample:

I select security level 1 the user1  selected as manager issue automatically and secuitylevel2 with user2 and...

is this possible?

thanks

2 answers

1 vote
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
December 2, 2018

Hello,

You could do it with the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could write a listener for the Issue Updated event with a code like this:

if (securityLevel == "level1") {

  assignee = user1;

}

if (securityLevel == "level2") {

  assignee = user2;

}

You can read more about listeners here:

https://confluence.cprime.io/pages/viewpage.action?pageId=6558205

1 vote
Joe Pitt
Community Champion
December 2, 2018

Not out of the box. You may be able to do it with scripting or a possible plugin. 

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events