Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×
Hi @Michael Catmur -- Welcome to the Atlassian Community!
For a question like this, context is important for the community to help. Please post the following:
Until we see those...
Are you using the built-in Start Date and End Date fields, or did you create additional custom fields with the same names?
What are the types of your fields: text, date, or date / time?
Kind regards,
Bill
Hi, thanks for the feedback:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for that information, @Michael Catmur
Let's start with the most-likely possible causes...
Date value typing
You are concatenating a string to a date, and then trying to use that as a date / time. Let's try helping the conversion a bit with forcing the first value explicitly to text before the concat() and then converting with a known format:
{{issue.customfield_11124.jiraDate.concat(" ").concat(issue.customfield_11248).toDate("yyyy-MM-dd HH:mm:ss")}}
Racetrack error
The Work Item Created trigger has a long-standing, racetrack timing problem. Specifically, the rule can start running before all of the data is available, or the item is even in a stable condition. This can appear as weird rule errors (e.g., permission problems, no issue type!, etc.) or conditions not matching as expected.
In the announcement for this advanced component feature, I asked the Atlassian team member about it and...they know about it, they are working on architectural changes to fix it, and there is no time frame for when this will be fixed.
Given that information, I have two recommendations:
Please make those three changes and then retest your rule. Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
moved on a little now.. have managed to get a custom field StartDateTime_Concatenated (issue.customfield_11578) as a string using:
{{issue.customfield_11124.format("yyyy-MM-dd").concat("T").concat(issue.customfield_11248).concat("Z")}}
this is storing values like "2025-08-21T10:10:10Z" in a string field.
Now i need to convert that ISO datetime into a proper datetime value. I tried these: but get no value populated and no error message from the automation.
Any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
While this won't solve your issue, it will help with what you are trying to do.
Change your statement to:
{{#Debug}}{{issue.customfield_11124.concat("T").concat(issue.customfield_11248)}}{{/}}
Then post the output here. If you get an error, post each piece separately so that we can see your data
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, for that. I tried it, but unfortunately get no extra info in the 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.