Forums

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

How to add 'Labels' automatically on Transition/State change

somashekhar
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
December 1, 2015

How to add 'Labels' automatically on Transition/State change ( i.e  changing the bug status (Ex) to 'Open' to 'close' state.Does JIRA support for this.

Please Comment.
Thanks 

1 answer

0 votes
Fabio Racobaldo _Catworkx_
Community Champion
December 1, 2015

Hello, 

You can add a label on transition by writing a post function using script runner plugin (https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner/server/overview).

Here the code that you could use for this purpose :

import com.atlassian.jira.component.ComponentAccessor
   
def user = ComponentAccessor.jiraAuthenticationContext?.getLoggedInUser()
   
def labelManager = ComponentAccessor.getComponent(LabelManager)
labelManager.addLabel(user,issue.id, "HERE_YOUR_LABEL", false)

Regards,

Fabio

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events