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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.