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.
Racking my brain on this one, hope you guys can help.
I'm trying to create a groovy script that will clear out the value of a custom field upon issue creation, but only if it's a clone of another ticket. This is our workaround for avoiding the propagation of custom field data when creating a clone.
Here's my code thus far; no failures, but no results:
import com.atlassian.jira.component.ComponentAccessor
def customFieldManager = ComponentAccessor.getCustomFieldManager()
def clonedIssues = ComponentAccessor.getIssueLinkManager().getOutwardLinks(issue.getId())?.findAll {it.issueLinkType.outward == "Clones"};
if (clonedIssues) {
def cfpival = customFieldManager.getCustomFieldObjectByName("PI/Sprint Value") //Set custom text field with current date & time if blank
issue.setCustomFieldValue(cfpival, null)
}
I should note that the post func is at the very top of the list of functions to be executed, even above 'Create the issue originally'.
Any ideas?