diff --git a/.github/workflows/automated-staging-test-run.yml b/.github/workflows/automated-staging-test-run.yml index 58b7b6118..5a0f2c27d 100644 --- a/.github/workflows/automated-staging-test-run.yml +++ b/.github/workflows/automated-staging-test-run.yml @@ -6,13 +6,9 @@ on: workflow_dispatch: jobs: - test_files: - runs-on: ubuntu-latest - - steps: - - name: Call staging-test-run.yml - uses: ./.github/workflows/staging-test-run_reusable.yml - with: - FILE_PATH: '../examples/Test/Automated/' - NAME: 'Automated' - TEST_TYPE: 'automatedTest' + call-staging-test-run: + uses: ./.github/workflows/staging-test-run_reusable.yml + with: + FILE_PATH: '../examples/Test/Automated/' + NAME: 'Automated' + TEST_TYPE: 'automatedTest' diff --git a/.github/workflows/golden-copy-staging-test-run.yml b/.github/workflows/golden-copy-staging-test-run.yml index 4c3cfb509..eb27dfa4f 100644 --- a/.github/workflows/golden-copy-staging-test-run.yml +++ b/.github/workflows/golden-copy-staging-test-run.yml @@ -6,13 +6,9 @@ on: workflow_dispatch: jobs: - test_files: - runs-on: ubuntu-latest - - steps: - - name: Call staging-test-run.yml - uses: ./.github/workflows/staging-test-run_reusable.yml - with: - FILE_PATH: '../examples/Test/Automated/GoldenCopy/Expected/' - NAME: 'Golden Copy' - TEST_TYPE: 'goldenCopyTest' + call-staging-test-run: + uses: ./.github/workflows/staging-test-run_reusable.yml + with: + FILE_PATH: '../examples/Test/Automated/GoldenCopy/Expected/' + NAME: 'Golden Copy' + TEST_TYPE: 'goldenCopyTest' diff --git a/.github/workflows/staging-test-run_reusable.yml b/.github/workflows/staging-test-run_reusable.yml index f1987f35e..b7f4c2181 100644 --- a/.github/workflows/staging-test-run_reusable.yml +++ b/.github/workflows/staging-test-run_reusable.yml @@ -7,14 +7,17 @@ on: type: string description: The e2e test to run required: true + default: 'automatedTest' NAME: type: string description: The name of test required: true + default: 'Automated' FILE_PATH: type: string description: The path to local files required: true + default: '../examples/Test/Automated/' jobs: test_files: