Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Need Help in Changing Story Status

Aishwarya Rajan March 12, 2018

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

2 answers

Suggest an answer

Log in or Sign up to answer
0 votes
Aishwarya Rajan March 13, 2018

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

Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 13, 2018

You can not just "set" a status, you must transition your issues through the workflow to the desired status.

0 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 12, 2018

Kindly have a look at how to transition an issue

https://community.atlassian.com/t5/Marketplace-Apps-questions/Groovy-Script-for-Linked-Issue-Transition/qaq-p/17706

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:

https://confluence.cprime.io/display/SIL/autotransition

TAGS
AUG Leaders

Atlassian Community Events