When story points for epic is updated, it should automatically update the story points in parent (Portfolio epic), for eg if the aa-1,aa-2 is the epics, aa-3 is the portfolio epic, if we update the story points for epics aa-1, aa-2 it should automatically update total count of epic story points in portfolio epic aa-3
Please help on this.
I have tried the above, but lookup issues is not pulling the parent one
Hi @Nagarjuna Busireddypally - It's in your branch. Parent is intended strictly for Sub-Tasks. You'll want to use a JQL lookup instead like this:
Key = {{issue.Parent Link}}
Hello @Mark Segall
Through your suggestion i was able to lookup for the portfolio epic, but the story points are not getting updated. Below is the screenshot of the rule.
I have used {{lookupIssues.Story Points.sum}} for edit issue fields story points
When story points is updated for epic, automation rule was pulling its parent epic but story points are not updated in portfolio epic
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So you're on track with the {{lookupIssues.sum}}. However, there is no lookup issues action in your rule.
You'll want to add the Lookup Issues action just before your Edit Issues component inside the branch. JQL would look like this:
"Parent Link" = {{issue}}
This will return all Epics under the branch issue. From there you should be able to use the {{lookupIssues.sum}} smart value in the Edit Issue action.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Mark Segall
Thank you for your suggestion and help.
Based on the same suggestion i tried for a similar automation but i was got confused on how to pull the issues
I am trying to automate this when an issue is created and assigned to epic, then the team(field) value from epic should be automatically copied to created issue.
Can you please help
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should be able to get there with something like this:
Key = {{issue.Epic Link}}
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.