Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Automatisation Rule to populate field with Released Date of Fix Version

Thierry
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 6, 2023

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

2 answers

1 accepted

0 votes
Answer accepted
Helen Rastetska
Contributor
September 6, 2023

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

0 votes
Thierry
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
September 7, 2023

 Hi @Helen Rastetska 

Thank you very much, it works perfectly.

 

Best wishes,

Thierry

Suggest an answer

Log in or Sign up to answer