From e77c10a17bbbed610aba3f90970d789938735608 Mon Sep 17 00:00:00 2001 From: Dunemask Date: Thu, 15 Feb 2024 17:51:14 -0700 Subject: [PATCH] [FEATURE] Auto Oasis Test --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 31b2fbd..bcea22d 100644 --- a/action.yml +++ b/action.yml @@ -5,7 +5,7 @@ inputs: infisical-token: description: 'Infisical API Token' required: true - envs: + secret-envs: description: 'The environments to fetch secrets for (Example: ci or ci,prod,edge )' required: true secret-paths: @@ -26,7 +26,7 @@ runs: # Get paths and envs into list paths="${{ inputs.secret-paths }}" - envs="${{ inputs.envs }}" + envs="${{ inputs.secret-envs }}" path_list=( $(echo $paths | sed "s/,/ /g") ) env_list=( $(echo $envs | sed "s/,/ /g") )