devstream-io / devstream

DevStream: the open-source DevOps toolchain manager (DTM).
https://www.devstream.io
Apache License 2.0
857 stars 193 forks source link

feat: support nested vars #1426

Closed aFlyBird0 closed 1 year ago

aFlyBird0 commented 1 year ago

Signed-off-by: Bird aflybird0@gmail.com

Pre-Checklist

Note: please complete ALL items in the following checklist.

Description

Support:

vars:
  a: [[ b]]a
  b: 123
  c: [[a]]c
  d: [[a]]/[[ c ]]/[[b]]

It is equal to:

vars:
  a: "123a"
  b: 123
  c: "123ac"
  d: "123a/123ac/123"

Related Issues

New Behavior (screenshots if needed)