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

somashekhar 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 _Herzum_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
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