Hi,
I have created an automation to set the Target start and Target end date when the sprint is set in a story. This is working.
But I want to be able to remove the dates when a sprint is removed from a story.
I tried this, but I'm not sure if this is ok to use (and I'm getting an error).
{ "fields": { "Target end": "{{clear}}" } }
Any idea what I should be using if this is not the right command?
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use the following JSON, replace the CF id with the ID of the Target start field.
{
"fields": {
"customfield_12100": null
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you null did the trick.
{
"fields": {
"Target end": null
}
}
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.