I would like to create an automation that automatically populates the Project Start of an idea when the ticket is transitioned to IN PROGRESS.
I know how to do it in Jira Software, but I can't find the Project Start field on JPD while creating the rule.
First, some fields are not listed in the dropdown list for the Create or Edit Work Item actions. Some of them may be set using the advanced edit with a JSON expression.
To use a JSON edit, you will need to check if your field is supported by rule actions, and what the correct custom field ID is for it. This how-to article describes the steps, which are essentially:
Next, consider that JPD uses its own date format, with a text representation of JSON. For example:
"customfield_12345": "{\"start\":\"2025-10-15\",\"end\":\"2025-10-15\"}"
Putting those things together, if your rule wanted to set your field to the current date with {{now}} that could be this JSON expression:
{
"fields: {
"customfield_12345": "{\"start\":\"{{now.jiraDate}}\",\"end\":\"{{now.jiraDate}}\"}"
}
}
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.