How Can I Create an automation rule with the coditions below?
Hello @이진주
Welcome to the Atlassian community.
Have you tried to create this rule? Which elements are you unable to figure out? Please show us what you have so far.
I have already checked if the parent issue exists using a branch.
I proceeded with the conditions "within the same branch, the issue type is Epic, and the Epic's due date is not empty."
Next, I want to add an "and condition" to compare the due dates between the issue and the Epic, but since the epic.duedate
smart value is no longer available, I am unsure how to proceed.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you provide screen images show the rule you have constructed so far, in English?
Otherwise can you describe each step in the rule?
You mentioned in your reply that you are using a branch, but a branch should not be necessary. You can use Smart Value conditions to look at the information in the trigger issue's parent Epic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This doesn't work.
Here are the steps of the rule:
Start condition: When the 'Due date' of an issue is edited
Condition 1: The issue's parent issue type is Epic
Condition 2: The due date of the triggered issue is later than the due date of the parent issue (Epic)
Result: Change the due date of the triggered issue to match the due date of the Epic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @이진주
Thank you for providing that additional information.
In what way exactly does the rule not work? What does the rule execution audit log tell you?
I see multiple problems with the rule you have shown.
1. The condition where you are checking if the issue type is Epic is being applied to the trigger issue, not the parent of the trigger issue.
2. The step where you compare the due date values of the trigger issue and its parent issue has errors in both of the smart values you used.
{{issue.duetate}} needs to be {{issueduedate}}
{{issue.parent.dudate}} needs to be {{issue.parent.duedate}}
You might want to try using the rule I provided to see if that produces the result that you want.
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.