I am using Jira automation conditions.
Initially I set up a rule to notify me when a ticket exceeds the timeestimate of hours and It has not been closed.
Now I want another notification that meets the condition of notifying me when the number of hours registered to the ticket has a shortfall of 10%.
Therefore, I need to know how to get 10% of {{issue.timeestimate}}
Do you have any idea how to do this?
Thanks.
Hi @Juan Meza
Have you looked at the math functions yet, like multiply() : https://support.atlassian.com/cloud-automation/docs/jira-smart-values-math-expressions/
With that you could use:
{{issue.timeestimate.multiply(0.1)}}
Kind regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.