Hello,
I would like a custom field to be automatically populated with the release date of a version when that version is assigned to the issue.
I've managed to create a new automation rule that triggers when a version is assigned to a ticket.
However, what is the syntax for retrieving the Release date of the associated fix Version ?
I didn't get the expected result with this one: {{issue.versions.first.releaseDate}}
Thanks for you help
Hi @Thierry ,
The "versions" attribute is used for issue's Affected Version field, but not for the Fix Version.
To get the Fix Version release date try this one:
{{issue.fixVersions.first.releaseDate}}
or simply
{{issue.fixVersions.releaseDate}} if you have only one FixVersion in the ticket.
Best wishes,
Helen
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.