Forums

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

Find out if a JIRA update event changes a specific issue field

Nando Neck
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!
August 1, 2017

I'm using Script Runner and I want to add a listener, that check, if the value of a specifc custom field is changed during this update event.

The custom field name is "Category" and it's id is "10400".

I assume it is somewhere hidden in com.atlassian.jira.event.issue.getChangeLog()". Am I correct? If yes, how can I loop through the changes to identify, if my specific field has changed or will be changed durin this event? Is this some kind of array? An option to visualize could probably be helpful.

1 answer

1 accepted

6 votes
Answer accepted
Thanos Batagiannis [Adaptavist]
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.
August 2, 2017

Hi Nando, 

You can have in your listener that listens to issue updated events, something like the following script 

def change = event?.getChangeLog()?.getRelated("ChildChangeItem")?.find {it.field == "SelectListA"}
if (change) {
log.debug "Old value : ${change.oldstring}"
log.debug "New value : ${change.newstring}"
log.debug "Value changed by ${event.user} at ${event?.getChangeLog()?.created}"
// do something if the value of the Category field changed
}

Hope that helps, 

Thanos

Aishwarya Rajan March 13, 2018 edited

Hi @Thanos Batagiannis [Adaptavist] I need to perform a same task..need to know if a story is updated and if yes..need to check if the description field (which is not a custom field) is updated. Do you have any leads for this?

 

Also, what does 

SelectListA indicate here

 

and if event is Issue Updated then,

...{event?.getChangeLog()?.created} will be {event?.getChangeLog()?.updated}

Hector
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.
June 12, 2019

@Aishwarya Rajan SelectListA stands for the name of the field/custom field. Please consider since early versions custom field's name can have duplicated names.

Suggest an answer

Log in or Sign up to answer
TAGS
loom essentials certification, loom training, get certified in loom, atlassian certification, loom async video, video messaging skills, atlassian learning, loom for teams, online certification, loom badge, loom for business, atlassian education

Get Certified in Loom! 🧑‍🎓

Time to up your Loom game! The new Loom Essentials Certification is here! Show off your skills, learn pro tips, and get officially recognized. Perfect for taking your video messaging to the next level.

Learn more
AUG Leaders

Atlassian Community Events