The YAML anchors to name a reusable section are defined by &name and then to use them to replace the value of something you do *name, if you want to “unsplat”/merge a dictionary/object then use <<: *name and then it’ll insert it at that point.
#yaml
15 August, 2025
YAML does not support unsplatting lists (basically, merging list items inline like you can with objects) and that’s intentional.
[… more]