Hi,
I am trying to modify the value of a date custom field using smart values for a Jira Automation, according to this documentation: Jira smart values - date and time | Cloud automation Cloud | Atlassian Support.
I have printed out log messages to troubleshoot, and the issue appears to come from the fact that I am using a custom field (date), as .plusDays(14) works for the native "created" field. The Edit Issue action follows:
{
"fields": { "customfield_10022": "{{ issue.customfield_10022.plusDays(14) }}"}
}
customfield_10022 is "Target start"
What am I missing here?
