Before proceeding
Problem
Run werf helm secret values edit and define following value:
some_key: >-
some_text_line1;
some_text_line2;
some_text_line3;
After running edit second time we receive reformatted value as follows:
some_key: some_text_line1; some_text_line2; some_text_line3;
— which is correct and is actually the same string. But for better UX we need to save original formatting with >- block type.
Solution (if you have one)
No response
Additional information
No response