Hi.
I need to add the sprint name to the summary. But Id doesn't work.
def cField = customFieldManager.getCustomFieldObject("customfield_10004")
def sprint = issue.getCustomFieldValue(cField)
issue.summary = issue.summary + " - Sprint PM - " + sprint
The code doesn't haver sintaxis error But when a ticket is created the summare have a bad format like this:
TEST - Sprint PM - [com.atlassian.greenhopper.service.sprint.Sprint@5a2a0cc9[id=4,rapidViewId=2,state=FUTURE,name=Sprint2,startDate=<null>,endDate=<null>,completeDate=<null>,sequence=4,goal=<null>]]
How I can get theonly the sprint name?
thanks a lot.