From c858c90f1625b687cd6a41ad6c06e346f0dbb655 Mon Sep 17 00:00:00 2001 From: vlad Date: Fri, 4 Feb 2022 12:55:25 +0300 Subject: [PATCH] Fix naming input variables in workflows --- .github/workflows/api-multi-module-workflow.yml | 4 ++-- .github/workflows/api-single-module-workflow.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/api-multi-module-workflow.yml b/.github/workflows/api-multi-module-workflow.yml index 5186dd9..cae998a 100644 --- a/.github/workflows/api-multi-module-workflow.yml +++ b/.github/workflows/api-multi-module-workflow.yml @@ -15,11 +15,11 @@ on: description: "Using for start docker container." required: true type: string - TEST_ENABLED: + IS_TEST_ENABLED: description: "Using for start test before pushing to ECR if value is true." required: true type: boolean - ECR_PUSH_ENABLED: + IS_ECR_PUSH_ENABLED: description: "Using for disable pushing to ECR if value is true." required: true type: boolean diff --git a/.github/workflows/api-single-module-workflow.yml b/.github/workflows/api-single-module-workflow.yml index 8f28e1e..a505796 100644 --- a/.github/workflows/api-single-module-workflow.yml +++ b/.github/workflows/api-single-module-workflow.yml @@ -11,11 +11,11 @@ on: description: "Using for start docker container." required: true type: string - TEST_ENABLED: + IS_TEST_ENABLED: description: "Using for start test before pushing to ECR if value is true." required: true type: boolean - ECR_PUSH_ENABLED: + IS_ECR_PUSH_ENABLED: description: "Using for disable pushing to ECR if value is true." required: true type: boolean