Hi All, I am trying to create an automation to roll up Last Sprint End date to the Epic as End Date and Sum of child story points.
In Automation Log the rule runs without errors, however no change in Feature.
For Testing purpose I have manual trigger, however I plan to change it to scheduled once every day.
NOTE: This is JIRA Server edition
As @Tim C noted, you were trying to use the {{lookupIssues}} smart value and the Lookup Issues action is not available for your version of Jira Server.
Two other possible work-arounds for your scenario are:
There are other community posts on doing what you ask, and so if you search you may find additional details on these techniques.
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you use variables in your older version? You can set the trigger to be daily but will cost you an automation to potentially run for every issuetype if you don't have exit loops so it will burn through a lot more unnecessary cycles. i use sprint change as i have multiple cascading automations in the same automation that trigger.
Sprint value changes on story - update story due date and now check the "parent" due date and update based on the child's oldest. This stops it from having to care about every child issue in the same automation and just checks if the change on the child would impact the parent.
I have a very similar automation that updates the level 2 parent in our environment as well
MinusTwoWeeks
{{DueDatebasedonSprint.minusweeks(2)}}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think you're missing the important step to actually do the "lookupissues" action.
If you're triggering from the Epic itself - then you'll need to use JQL to find the items which sit under the epic .... e.g.
"Epic link" = {{issue.key}}
If you also want to include sub-tasks in your results then you'll need something like this ...
I hope this helps?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I do not see that option. We are on server Jira v8.22.2 is the reason ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, apologies ... looks like this feature is only available on:
To benefit from this feature you can:
More info ...
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.