fjogeleit / yaml-update-action

Update YAML property with dynamic values

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

preverve dot notation without line breaks

oftoapp opened this issue · comments

commented

I have a yml like this:

  ...
  set:
    backend.container.tag: "v1"

when I use action plugin.

it replaces to like this:

  ...
  set:
    backend.container.tag: "v1"
    backend:
      container:
        tag: "v1"

How does your property path look like? Maybe something like set["backend.container.tag"] works.