YAML setting value from another key

How to set a value in YAML from another key, for example:

example.emails: - ben@example.co - neb@example.co - teb@example.co swift: to_email: example.emails 
+4
source share
1 answer

Oh, I found the answer, I just could not find good documentation from Google: S

 example.emails: - ben@example.co - neb@example.co - teb@example.co swift: to_email: "%example.emails%" 
+3
source

All Articles