Hello Team,
I'm very new with Jira Automations,
I need a rule for updating advanced roadmap gantt epics and related parent start and due date from child tasks:
min task start date and max task due date
pls, a very simple solution is required, there a lot of them in this community which are quite complex for my know how
Many thanks for help
One reason you may find complex solutions for this use case is there are a lot of variables...depending on your situation.
One possible basic rule for this could assume it is triggered manually from an epic:
Now comes the variation/complexity...what do you want to do when...
Using the basic rule requires you to remember to run it, and creating more rules to handle your needs makes it a bit more auto-magic.
Kind regards,
Bill
Hi @Bill Sheboy
I see and your are right about concern on complexity, I'm learning and I'll check it out later, I'll back to this discuss.
Your basic rule it's a good stating point for understanding the Automation scriping logic;
for the being time I don't have idea how can write following statement
action: lookup issues with JQL to gather the child issues for the epic
Can you help me?
thanks and regards
Antonio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I believe the JQL for the lookup issues action would be:
"Epic Link" = {{triggerIssue.key}}
That should return all issues which are children of the trigger issue, the epic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill
it's works properly! thanks
I'm wondering if there some solution to refresh page after trigger is completed, in oder to see data set without F5
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No, there is no built-in, automatic way to refresh the page after the rule runs.
Next, when you reference {{issue.sprint.last}} that is not necessarily the latest sprint, as the order of the sprints within the field could change.
Perhaps instead try {{issue.sprint.startDate.max.jiraDate}} to see if that works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Bill,
not clear where are you refereeing to:
{{issue.sprint.last}}
instead try {{issue.sprint.startDate.max.jiraDate}}
thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I just need to have on task same start/due date of sprint where is related
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I was noting that the list function last returns the last item in a list...with no regard to an desired ordering. If the list is in the correct order, you are okay, however...if you needed the the most recent item by date, consider using another method to find that value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join us to learn how your team can stay fully engaged in meetings without worrying about writing everything down. Dive into Loom's newest feature, Loom AI for meetings, which automatically takes notes and tracks action items.
Register today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.