Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×I previously received help getting the Start date and that part is working but due date is still not showing up based on the jql i found. I understand that story points should not be use to equate a due date but this is how we are doing it internally. My understanding of the query is that it should multiply the story points by 5 based then based on start date resolve the due date.
Hi @iatkinse
What happens if you try the below smart value? The start date is always "now" in your rule so using the below code would essentially be comparing it to the start date.
{{now.plusBusinessDays(issue.Story Points.multiply(5))}}
I'm not entirely sure at the moment and can't test it. Basically, what we are doing above is + 5 days for each story point. I think we need to get that first as maybe a variable and then add to the variable.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If I wanted to just have add days for instance if I have a 5points to a story and I wanted it to be done in 7 days, I tried to change to this: {{now.plusBusinessDays(issue.Story Points.add(2))}}
but it does not like that
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think something like below would work, but please test it first.
{{now.plusBusinessDays(issue.Story Points.plus(2))}}
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.