Jira story point Fibonacci Validation

Issue #113 resolved
Madhuy created an issue

Hello,

We are looking for a functionality that story point fields, which we request users to enter only 1, 2, 3, 5, 8,13, 21, 34 and 55 as story points. We need to enforce users to enter only these listed values, can we enforce this validation in workflows?

When user enter other than above listed values, validation need to happen and the workflow transition should not be changed, then it need to throw error saying provided values are not supported.

Comments (2)

  1. Fidel Castro Armario repo owner

    You can do it easily using "Boolean validator with math, date-time or text-string terms" with the following configuration:

    conf-1.png

    Boolean expression used is:

    {13700} in [1, 2, 3, 5, 8, 13, 21, 34, 55]
    

    Notice that:

    • {13700} is code for numeric value of custom field "Story Points". This code depends on each particular JIRA instance.
    • Beware not to confuse with %{13700}, which is field code that returns a string value instead of a numeric value.

    Once configured, your transition will look like this:

    conf-2.png

  2. Log in to comment