Forums

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

How to customize the story point field ?

danielsandy October 15, 2018

We have a custom filed STORY POINTS (in contrast to standard story points). Our filed only allows for particular numbers (1, 2, 3, 5, 8, ....). Only the standard field is used in evaluations (e.g. burndowns charts). We need our values to be respected there.

1 answer

1 accepted

2 votes
Answer accepted
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.
October 15, 2018

Hello,

I am not sure what you mean by respected. Do you mean that you want the values of your custom field to be copied to the Story Points Field?

If so then you would need an add-on. For example, you could use the Power Scripts add-on:

https://marketplace.atlassian.com/apps/43318/power-scripts-jira-script-automation?hosting=cloud&tab=overview

You could write a listener for the Update Issue event with a code like this:

#{Story Points} = #{your custom field name}

This listener would update the Story Points field with the Custom field value every time an issue is updated.

You can find more info about listeners here:

https://confluence.cprime.io/pages/viewpage.action?pageId=6558205

danielsandy October 15, 2018

Hi @Alexey Matveev,

Thanks for your answer. Could you please tell me it will affect all the project in JIRA ??. Because i want to change only one project.

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.
October 15, 2018

If you need it for one project you could write a script like this:

if (project == "your project key") {
 #{Story Points} = #{your custom field name}
}

Suggest an answer

Log in or Sign up to answer