When using Automation rules on Ideas, I noticed that date fields on the Idea issue type are not available for automation rules.
The use case:
We have a custom field "Sprint start" (sprint number; select field), which we use to indicate in which sprint this Idea will start, as part of the HL planning.
I would like to "translate" these values into a specific date, by setting an automated rule (if Sprint Start = "1" then start date is 1/1/2024). This will enable Ideas to be visible on the timeline view, which uses DATES as input.
Currently, date fields are not supported in automation rules on Ideas.
Is this expected to change anytime soon?
Thanks
Hi @Neta Ilany it's not in our immediate plans to make improvements to Automation capabilities, though we have noted your issue for us to address when we work on this area in the future. I suspect the limitation here is that dates in Jira Product Discovery are actually a text field under the hood, we did this so we can support date ranges (eg. Delivery in Q1 instead of Jan 1 2023).
In case you haven't seen it already, here's a post with our supported Automations: https://community.atlassian.com/t5/Jira-Product-Discovery-articles/Product-demo-Automation-for-Delivery/ba-p/2057152
Hi @Rohan Swami
Any news on making dates in JPD actual dates so we can query them?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Christian Prats this isn't in our short term plans at the moment
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.
@Neta Ilany @Rohan Swami @Christian Prats Figured out workaround:
First you want to find the name of your custom field you use in product discovery for date you want to set. You can follow this tutorial: https://support.atlassian.com/cloud-automation/docs/find-the-smart-value-for-a-field/
Once you have your custom field, you can set its value inside "More options" on create or edit issue action.
The format is following:
If you want the date to be from 2024-02-04 to 2024-02-05:
{
"fields": {
"customfield_10185": "{\"start\":\"2024-02-04\",\"end\":\"2024-02-05\"}"
}
}
}
If you want the date to be set to 2024-02-04:
{
"fields": {
"customfield_10185": "{\"start\":\"2024-02-04\",\"end\":\"2024-02-04\"}"
}
}
}
If you want to use smart values (be sure to have it formatted right):
{
"fields": {
"customfield_10185": "{\"start\":\"{{triggerIssue.duedate}}\",\"end\":\"{{triggerIssue.duedate}}\"}"
}
}
}
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.