Forums

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

Adding Release Date Field to User Stories

Jeffery Payne
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!
August 14, 2018

We are trying to get the "Fix Version" release date to also appear on User Stories.  We want the same date that is on the Release Tab where you have the Fix Version Name and the Release Date associated with that Fix Version.  Does anyone know if it's possible to get that date (Just date, not date and time) to appear on the User Story?

2 answers

2 votes
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 14, 2018

Hello,

You would need an add-on for it, which will let you to create a scripted field. You can use the Power Custom Fields add-on for it. It is a free add-on:

https://marketplace.atlassian.com/apps/1210749/power-custom-fields?hosting=server&tab=overview

You can create a custom field with a script like this:

if (fixVersions.size() > 0) {
  string format = "yyyy.MM.dd";
return formatDate(admGetProjectVersion(key, fixVersions[0]).releaseDate, format);
}

The Fix Versions fields can have multiple values. In my script I take the frist fix version value. Then you can add this custom field to any issue screen to see the release date of a version, which is set for the issue.

0 votes
shetty
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
August 14, 2018

Hi

 

it is possible to get release date field but you have to manually update it for each user story

Suggest an answer

Log in or Sign up to answer