From 3aac20e4ccf1495243b437df2b76b1f9a5790340 Mon Sep 17 00:00:00 2001 From: Jose Luis Pereira Date: Sun, 5 Feb 2023 10:38:00 +0000 Subject: [PATCH] Fix starts_with_convert_prefix comment --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7558352..3493ba0 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,9 @@ steps: starts_with: PREFIX_ starts_with_convert_prefix: false convert: lower -- run: env | grep 'PREFIX_' +- run: env +# observe that only vars with PREFIX_ were exported +# E.g. secret with PREFIX_KEY_1 would become PREFIX_key_1 ``` **Convert:**