I have a workflow that creates Jira tickets. Everything works perfectly, except when I output the $.trigger.changes into the Jira ticket, I receive one super long line that is not very easy to read. To solve this, I am trying to iterate over each change in the $.trigger.changes array and separate the changes by a new line character. I am currently stuck trying to add what should be relatively simple velocity logic (EX: #foreach($triggerChange in {{.$trigger.changes}}), but this does not work in the json formatted workflow.
Does anyone have experience with HTML formatting from within the IDN JSON workflow format, or with experience iterating over an array in JSON?
Can you share your workflow JSON with what you have tried so far, minus any sensitive data? That will give us a better idea of what your logic looks like so we can figure out a potential solution.
My question is more general and not really workflow specific.
An example of what I’m trying to do is the following:
“text”: “#foreach($triggerChange in {{$.trigger.changes}})Attribute: $triggerChange.attribute, Old Value: $triggerChange.oldValue, New Value: $triggerChange.newValue\n”,
I have not found a way with the native capabilities in workflows to do what you are asking. Workflows uses JSONpath as its JSON query language, which does not support the ability to insert values in between items in an array. The only JSONpath operator that comes close to this is the concat() operator, but you must specify each index in the array manually, which would not scale to your needs.
Workflow loops are asynchronous and unable to work on shared data, and the output of a loop is not available in later steps due to its async nature.
The define variable operator also does not appear to support this use case.
You will either have to output the whole string as you are now, or you will have to invoke an external service via the HTTP Request, like AWS Lambda, to do the processing for you.
In theory, you could use synchronous recursion in workflows to process your list of changes and append the new line after each change. If you’re interested, you could read up on it here: