How to Join 2 variables in YAML
variables:
- name: Table
value: 'table'
- name: Tennis
value: 'tennis'
- name: Combine
value: variables.Tennis + ' is '+ variables.Table
The expected output is "table is tennis"
I tried concatenating 2 variables or 2 parameters into a variable and it's not working out with + please suggest