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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Need Help in Changing Story Status

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

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.
Mar 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.
Mar 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