Need help with the following scenario:
Job reads a file as an option ( let's name it
file.in ) along with some other freeform text intputs to run a ansible playbook.
After the job finishes , i populate my slack template with the execution data, which is mostly based the options.
Options values can be accessed by using ${executionData.context.option.my_option}, but in order to get the original file name i would need something like ${executionData.context.file.my_option.fileName}
I tried
${executionData.context.file.my_option.fileName}
${executionData.file.my_option.fileName}
But neither of the two options are found.
Any help is greatly appreciated !