Hi,
How do i turn star date of a subtask to be the same of the due date of another subtask?
Note: I have some subtask with differents names.
What is the relationship in Jira between these sub-tasks? For example, do they have the same parent, are the linked, etc.?
Kind regards,
Bill
Hi @Bill Sheboy , Thanks for feedback.
They have the same parent, and i want wich the rule repeats ever.
I tried use the automation but the function wich i used not work it.
i used: {{Subtask1.startDate.isEquals(Subtask2.dueDate)}}.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You cannot reference the sub-tasks as you have noted in smart values; each is its own issue, and I expect you will need to use some branching and/or created variables to do this in a condition.
Please post an image of your rule as that will provide some context for the community to offer more specific suggestions. Thanks!
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.
Thanks for that information!
Okay, the isEquals() function returns true or false, and not a date. The key here is how to find the sub-task that you want to update and to give that a date field. Let's assume there is one-and-only-one Produção sub-task with the same parent as the Cadastro sub-task.
If so, it seems like what you are asking to do is this:
parent = {{triggerIssue.parent}} AND issueType = "Produção"
Please check/confirm your issue type spelling as I was copying from our posts.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Exactly, they have the same parent and i want wich the "Produção" start date are the same "Cadastro" due date always. If i to change one, will change the other.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yes, I understand. Then you will need 2 rules to keep these fields in synchronization:
Please note: because these two rules could create a "dead-lock" situation by altering the same fields, you will want to alter the triggers so they only fire for "edit issue" and you will want to add a condition after the trigger that the edit was not done by automation:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Nice!
Only the first rule work it good and did wich i wanted.
Using the JQL branch and the correct trigger the rule worked good.
Thanks @Bill Sheboy !
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Awesome; I am glad to learn that helped. Please consider marking this question as answered. That will help others in the community with similar concerns find solutions faster. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Bill Sheboy , Thanks for feedback.
They have the same parent, and i want wich the rule repeats ever.
I tried use the automation but the function wich i used not work it.
i used: {{Subtask1.startDate.isEquals(Subtask2.dueDate)}}.
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.