I am attempting to create an automation that will automatically populate the 'due date' and the Planned End Date with the Sprint End Date for that issue when the Sprint is added or changed. I have tried all of the formulas below and I either get nothing, I get the date of the last sprint created but if I chose any other sprint I get "Jan 01, 2024" or one of the errors below:
Trigger:
When value changes for the Sprint field -->
Due Date
{{Issue.Sprint.endDate.format("yyyy-MM-dd")}}
{{Issue.Sprint.endDate}}
Planned End Date:
{{Issue.Sprint.endDate.format("yyyy-MM-dd")}}
{{Issue.Sprint.endDate}}
Error messages:
I am not abele to see what formats are in the custom. How can I see those? Are they at the system level admin for my organization? What can I do?
Hmm, can you share your rule screenshot, especially the step where you are updating the fields..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you @Kalyan Sattaluri ! That worked for the Start and Due Date field! There were more than one Sprint in one of the issues I tested.
It did not work for the "Planned start date" & "Planned End date" fields The audit log says it was successful however nothing was populated in those fields.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @KAIA STRICKLAND
Have you logged {{issue.sprint.endDate}} date to see if this issue has 1 sprint end date or multiple?
Cause if this issue was part of multiple sprints, this smart value is a list which you are trying to assign to a date field. So instead you may need to use {{issue.sprint.endDate.max}}
Can you please log these values before updating your fields and share your rule / audit log?
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.