Trying to create an automation rule that synchronizes a custom field on a subtask to its parent (e.g. story) as long as the parent issue type is NOT a custom created issue type names "App Release". The "App Release" is at the same level as the story and task. For example:
I've tried using the SmartValues yet can't see how to access the issue type of the parent.
Currently, when I change the subtask value for the subtask associated to App Release, it sets the value of the subtask to the initiative value of the App Release. So in my example, it changes the value to B.
Hi @Joni Johnson,
When working with parent issues etc. you will need to create a branch in your automation rule to determine that you're going to update your linked issues. Inside that branch, you can apply additional conditions.
So just add such a condition to specify what types of parent your issues should be updated. Something like this:
I don't have an initiative custom field, so I used components instead, but I hope you get the idea.
Hope this helps!
Walter,
Thank you for sharing and including the image. I tried this yet couldn't figure out how to update the initiative value on the trigger issue (subtask) to the initiative of the parent when the issue type was not an App Release using the For Parent. I know I will use the For Parent with other rules so appreciate the sharing.
Regards,
Joni
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are trying to conditionally update the trigger issue (a subtask) based on the type of the parent, correct?
If so, you may access the parent's issue type with {{issue.parent.issueType.name}} to compare based on the issue type name. That would make your rule something like this:
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.
Bill,
Thank you so much! This worked perfectly! I added a comment to note why this was changing also as that is a great suggestion.
Grateful for your sharing.
Joni
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.