You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I want to read issue Development field information (commits) with groovy post function script
the plugin com.atlassian.jira.plugin.devstatus.api.DevStatusSummaryService seems to not be no more available.
we use the JDC 8.20.0 version server
Can someone advise how to do this?
Thanks a lot, it helped me very much! Now I can get set of commit authors
def items = data['detail']['repositories']
items.each{ repos->
repos.each {repo->
repo.each{ commits->
commits.each {commit->
if (commit["message"].toString().contains(issue.key)){
def authorName = commit["author"]["name"]
authors.add(authorName)
}
}
}
}
}
return authors as Set
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.