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

Jira sum of story points in epic based on the linked issues using SIL Scripts

Edited

Jira sum of story points in epic based on the linked issues using SIL Scripts need to update SIL Listeners. 

 

Below Script for the Reference :

 

string parent_;
int storyPointsTotal = 0;
if(%key%.project == "DT"){ 
// the above DT is project key;
    for(string issue in allLinkedIssues(key)){
        if(%issue%.issueType == "Feature"){
// The Above Feature is Like Epic 
            parent_ = issue;
        }
    }
    
    if(parent_ != ""){    
        for(string issue in allLinkedIssues(parent_)){
            if(%issue%.issueType != "Feature" && isNotNull(%issue%.customfield_10024)){
                storyPointsTotal += %issue%.customfield_10024;
//The above customfield_10024 = Storypoint customfield id 
            }
        }  
        %parent_%.customfield_10024 = storyPointsTotal;
    }
}

0 comments

Comment

Log in or Sign up to comment