Can we ref yaml config?

a yaml for example:

a:
b: 1
c: $b

Try something like this:

b: &valueOfB 1
c: *valueOfB

This takes advantage of yaml aliases.

1 Like

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.