1. Sum Story Points of Children of Epic

Assume this script runs on a Epic Workflow.

Requirement:
Search for the “Story Points” custom field on your instance.

Normal Approach

sum = 0 for issue in api.search_issues(f'parent = {issue.key}'): sum += issue.fields.<your_story_points_customfield_id> issue.set('<your_story_points_customfield_id>', sum)

Advanced Pythonic Approach

points = sum([issue.fields.<storypointsfieldkey> for issue in api.search_issues(f'parent = {issue.key}')]) issue.set('<your_story_points_customfield_id>', points)

 

To test it, get an Epic from the target project, this Epic should have child issues that contain story points != null.

Your test script in the Console should look like this:

# For testing purposes in the Console, do: issue = Issue('Your Epic - Issue Key') sum = 0 for issue in api.search_issues(f'parent = {issue.key}'): sum += issue.fields.<your_story_points_customfield_id> issue.set('<your_story_points_customfield_id>', sum)

After your testing is done, remove or comment the issue = Issue('Your Epic - Issue Key') part and plug it into a listener/postfunction.

 

 

 

Easy for Jira - Python Automations, 2023