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.
hii ,
can anyone please help me with this ,
i want to set default value for Epic Link . Thanks in advance
Hi @sgole
You can try to apply the sample script below in the Behaviour Initialiser:
import com.atlassian.jira.component.ComponentAccessor
// Get Epic Link field and it's value
def epic = getFieldByName("Epic Link")
def value = epic.getValue() as String
if(getActionName() == "Create" && value == null ){
//Set epic link
epic.setFormValue("RAIN-12")
}
I'm using Scriptrunner 6.18.0 and Jira 8.13.1.
Hope you found this useful!
hii @Jia Jie Thanks for your help , in my case i was trying to set JIRA in setFormvalue ex. setFormvalue("JIRA") ,
instead of setFormvalue("EEHQAN-2") works :).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @sgole ,
Glad that it works now and I'm happy to help!
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.
Hi @sgole ,
It's similar to the sample script above. Try to get your sprint by its Id, then set it with sprint id.
//Get Sprint field by its id
def sprint = getFieldById("customfield_10101")
//Set the default sprint with sprint id
sprint.setFormValue(1)
You can refer to the community post here on getting the sprint id.
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.
Hi @sgole ,
I found this resolved Atlassian Community discussion to be relevant to this case: Create a default Epic Link using Behavior . Do check it out if it suits your requirement.
I hope this helps.
Kind regards,
Irfan
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.