Forums

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

On Transition, assign task to specific user

Philip Lucks August 22, 2018

We would like to automatically assign tasks to our QA lead when in the QA column.  I see the "Post Function" options as only 3 choices:

 Assign to Current UserAssigns the issue to the current user if the current user has the 'Assignable User' permission.
 Assign to Lead DeveloperAssigns the issue to the project/component lead developer
 Assign to ReporterAssigns the issue to the reporter

Is there an alternate way to assign to a specific user based on the column &/or task labels?

 

We do not have any Github actions at this time to try and use WebHooks.

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.
August 22, 2018

Hello,

You would need an add-on for it. For example, you can use the Power Scripts add-on:

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

You could write a post-function like this:

if(#{custom field name} == "your value" && arrayFind(labels,"your label") != -1) {

  assignee = "your assignee";

}

 You can find more info on post functions here:

https://confluence.cprime.io/display/JJUPIN/Customizing+workflows#Customizingworkflows-Forpostfunctions:

0 votes
Petter Gonçalves
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
August 22, 2018

Hello Philip,

You can use JIRA Automation lite plugin to configure a rule that will change the assignee of issues based on a JQL filter. Check the example below:

Screen Shot 2018-08-22 at 18.23.21.png

Here are the plugins:

JIRA Server: Automation Lite for JIRA

JIRA Cloud: Automation Lite for JIRA Cloud

Suggest an answer

Log in or Sign up to answer