I have searched the community threads on this issue, but it seems that the problem that I am facing has not been answered to my specific situation, so starting a new question.
I am trying to set up an automation that will sum up the original estimate of stories to their linked Epic (Parent). I have set up the rule, and it notes that when run, it is a success, but no changes are apparent. Not sure what I am doing wrong here; I may be going crazy!
Here is my rule
Hoping the community can help me figure out the issue, as I am sure its something small that I am overlooking.
Note: our original estimate is set to hours so using the divide by 3600
Hello @Nicole.Selph
Are you trying to Sum up estimates from Story to Epic?
If so, your current rule is trying to add subtask values to Epic. Which is not correct and nothing will be updated.
To correct this, inside your branch, first thing you need to do is lookupIssues with "Parent" = {{issue.key}}
Then your total is, {{lookupIssues.remaining estimate.sum}}
And you can assign it to your epic as {{#=}}{{lookupIssues.remaining estimate.sum}} / 3600 {{/}}
Thank you so much for responding! Pardon my ignorance though, I am not sure where to go to do the lookup issues, so not sure where to correct my rule. This is my first time creating rules, so I am not great at understanding the complexities yet.
Apologies, if my question is silly
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
After your Branch statement, delete existing Edit issue step, and below:
{{#=}}{{lookupIssues.remaining estimate.sum}} / 3600 {{/}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Should be like below, run rule and share audit log..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Theresa yes, it should. We are not using story points, just time tracking. This is what my rule looks like
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks to @Kalyan Sattaluri for detailed explanation of the automation rule.
@Nicole.Selph, as an alternative to automation you can use Sum Up Reports for Jira app developed by our team. It provides a dashboard gadget and you can view multiple fields summed at the same time. The app does not modify your epic fields. Instead it displays the results on the fly in your dashboard.
Hope it helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.