From 03babbde5742c9cde5fc8fa93324da25487b1653 Mon Sep 17 00:00:00 2001 From: Akshay Shetty Date: Thu, 2 Apr 2026 13:15:34 +0100 Subject: [PATCH 1/2] converted string to boolean in default mns vlidation flag --- .github/workflows/run-e2e-automation-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-e2e-automation-tests.yml b/.github/workflows/run-e2e-automation-tests.yml index d545fd344..ace1c9f73 100644 --- a/.github/workflows/run-e2e-automation-tests.yml +++ b/.github/workflows/run-e2e-automation-tests.yml @@ -70,7 +70,7 @@ on: - Batch_File_Validation_Feature mns_validation_required: description: Set to true if you want the MNS validation to be performed as part of the tests. please keep in mind it will increase execution time. - default: "false" + default: false type: boolean env: From 4dd8fe03e97a65f88c17360c1fd0a26ce7215e6c Mon Sep 17 00:00:00 2001 From: Akshay Shetty Date: Thu, 2 Apr 2026 13:25:51 +0100 Subject: [PATCH 2/2] added required as false and changed back to string --- .github/workflows/run-e2e-automation-tests.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-e2e-automation-tests.yml b/.github/workflows/run-e2e-automation-tests.yml index ace1c9f73..893ef77fa 100644 --- a/.github/workflows/run-e2e-automation-tests.yml +++ b/.github/workflows/run-e2e-automation-tests.yml @@ -70,8 +70,9 @@ on: - Batch_File_Validation_Feature mns_validation_required: description: Set to true if you want the MNS validation to be performed as part of the tests. please keep in mind it will increase execution time. - default: false - type: boolean + default: "false" + required: false + type: string env: APIGEE_AUTH_ENV: ${{ inputs.apigee_environment == 'int' && inputs.apigee_environment || 'internal-dev' }}