Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Store value of "Target start", each time the field updates, the value is stored in a custom field

Hi,

I want to store the value of "Target start" in another custom field. Each time the value of Target start changes, it is stored as an array.

How to achieve this using script runner?

 

Thanks

Swarna

1 answer

1 accepted

Suggest an answer

Log in or Sign up to answer
0 votes
Answer accepted
Gezim Shehu [Communardo]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
Sep 28, 2018 • edited

Sorry don't have much time to refine this.

But the basics are here.

 

Just add a new Script Listener, for your desired project or ALL (you can also define conditions in the script for example if(issuetype = task) etc)

Run the listener on event Issue Updated

Inline Script

 

import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.issue.MutableIssue
def change = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find{it.field == 'nameOfFieldToMonitor'}

if (change) {
    MutableIssue issue = (MutableIssue) event.issue
    def customFieldManager = ComponentAccessor.getCustomFieldManager()
    def issueManager = ComponentAccessor.getIssueManager()
    def fieldToHoldValue = customFieldManager.getCustomFieldObjectByName('nameOfFieldToHold')
    def existingHistory = issue.getCustomFieldValue(fieldToHoldValue)
    def newHistory = []
    //def user = ComponentAccessor.getUserManager().getUserByKey('username')
    def user = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
    
    if(existingHistory){
        newHistory.add(existingHistory)
        newHistory.add(change.newstring)
    }else{
        newHistory.add(change.newstring)
        //newHistory = change.oldstring.toString() + ',' + change.newstring.toString()        
    }
      
    if(newHistory){
        issue.setCustomFieldValue(fieldToHoldValue, newHistory.toString())
        issueManager.updateIssue(user, issue, com.atlassian.jira.event.type.EventDispatchOption.ISSUE_UPDATED, false)
        //log.warn "Field value changed from ${change.oldstring} to ${change.newstring}"
    }
}

 

Structure the array or the saving however you want.

TAGS
AUG Leaders

Atlassian Community Events