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.
Upon creation I would like to make Epic link Mandatory if the fix version = a specific value only
Hello,
Here's an example of a validator that should do what you're wanting:
import com.atlassian.jira.component.ComponentAccessor
def versions = issue.fixVersions
def epicLink = ComponentAccessor.customFieldManager.getCustomFieldObjectByName("Epic Link")
if(versions[0].name as String == "Version 1.0" && versions.size() == 1){
log.debug("Epic Link: ${issue.getCustomFieldValue(epicLink)}")
if(issue.getCustomFieldValue(epicLink) != null){
return true
}
return false
}
else return false
This can be set up as a Simple Scripted Validator on the Create transition, which I believe is what you were wanting. My example script works when 'Fix Versions' is only 'Version 1.0'. It then checks that Epic Link has a value. You can modify the condition in the 'if' statement to make it work for you.
Let me know if you have any problems or questions!
Jenna Davis
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.