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

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,551,904
Community Members
 
Community Events
184
Community Groups

Create Custom Listener to Know if a story is updated

H..I am using Script Runner and I need to create a custom listener to know if a story issue is updated and if yes, I need to check if the description field (which is not a custom field ) is updated. I tried finding a solution but I am stuck since most of the solutions indicate in how to update a custom field..where as I dont want to update anything here and just want to know if a field is updated by someone..

also, I am confused if I have to use 

import com.atlassian.jira.issue.Issue 

or 

import com.atlassian.jira.event.issue.IssueEventListener 
 

class 

def issue = event.issue as Issue

 

Please suggest a solution if possible.

1 answer

1 vote
Alexey Matveev
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.
Mar 13, 2018

You can get what was changed with the following code:

int i =0

while (i < changeItems?.size()) {
 log.error(changeItems.getAt(i).get("field"))
 i++;
}

Hi @Alexey Matveev. Thanks for resp. So if I have to check for a single field.i.e description field..which is not a custom field...can I write it as 

 

log.error(changeItems.get("Description")

 

?

Also..how to check if a particular issue (story) is updated? Any leads on it?

Alexey Matveev
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.
Mar 13, 2018

No, you can not write like this. 

changeItems.getAt(i).get("field") returns the name of the field. You can log the changeItems varable and have a look at its structure.

You should define your listener for the Update Issue event.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events