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
Hi, I need to change the status of a current story issue based on its parent epic status. So I have two conditions in my groovy script and when any of those conditions satisfies..I will have to change the story status..I tried using setStatus method in the logic..but seems there is no such method...so need help if possible. TIA
I am using ScriptRunner. I saw through above links..but in my case its not a transition actually..its just replicating the parent epic status.
I tried something like this :
if (storyStatus == "Open") {
String epicKey = getFieldByName("Epic Link").getValue()
epLink.setHelpText(epicKey)
if (epicKey==null){
StoryStatusField.setFormValue("N/A")
}
else{
//Grab the parent epic issue
Issue epicIssue = issueManager.getIssueObject(epicKey)
//Grab the linked epic status status
def epicStatus = epicIssue.getStatus().getName()
StoryStatusField.setFormValue(epicStatus)
}
}
Is there any flaw here or anything that I am Missing
You can not just "set" a status, you must transition your issues through the workflow to the desired status.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Kindly have a look at how to transition an issue
if you have ScriptRunner then there is a built in function Fast track transition issue
https://scriptrunner.adaptavist.com/latest/jira/builtin-scripts.html#_fast_track_transition_an_issue
If you have Power Scripts then you can use the autotransition function:
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.