Add Label with Escalation Service - not shown in issue history

Paulina Wegrzyn February 29, 2016

Hi,

I have set an esaclation service which is closing issues based on some filter (it works perfectly). But I wanted to add a label as an additional action to the issue - I have this code

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.label.LabelManager
 
def user = ComponentAccessor.jiraAuthenticationContext.getLoggedInUser()
LabelManager labelManager = ComponentAccessor.getComponent(LabelManager)
def labelSet = ["some labels"] as Set
labelManager.setLabels(user,issue.id,labelSet.toSet(),false,false)

This code is setting the label properly but I dont get the information who set this label in the issue history.

Could you please tell my what I am doing wrong (esaclation service runs under my username and status change is logged properly but addition of the label is not... variable user is defined in my code also). 

(JIRA version 6.4.12, Service runner version 4.1.3.8)

Thanks in advance, 

Paulina

1 answer

0 votes
JamieA
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.
February 29, 2016

The following should work but it's not for some reason... I'll try to keep digging:

issueInputParameters.getActionParameters().put("labels", ["foo", "bar"] as String[])
Paulina Wegrzyn March 7, 2016

Hi @Jamie Echlin [Adaptavist],

If you will have any update, please let me know.

 

The first thing I checked was also issueInputParameters as suggested in Escalation Service documentation but it was not working...

Thanks in advance,

Paulina

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events