I want to create a script where at different steps I would like to amend a given string variable so that I can send it at the end within a notification.
Let’s say I define a first variable :
variables:
mystring: line 1
Then later I want to add some text to the variable mastering.
I create a second variable string-to-add:
variables:
string_to_add: line 2
Then what is the proper syntax to concatenate the variable string_to_add to the initial variable mystring ?
For example the following syntax does not seem to work: