I have some templates for AzureDevops
Feature
item type that have some predefined fields (e.g. AreaPath
, IterationPath
) and as a title, I would like to use the Parent item title
with a prefix, e.g. [prefix] Parent item title
.
Is there any way to reference the parent item title in the template field definition? I was thinking (and tried, with no success) something like:
Title = [prefix] @ParentTitle
Title = [prefix] @Parent.Title
Title = [prefix] $ParentTitle
Title = [prefix] $Parent.Title
Giving that a template could be applied to an existing item, I am also curious if I could at least access the current Feature
title through the template in a similar way, maybe like:
Title = [prefix] @Title
Title = [prefix] $Title
I basically want to not add a generic Placeholder
title, but instead use either the parent item title or the current item title with some adjustments.