From 588eaad92a22742665dfdd9f771f4cbf70b14d57 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Wed, 12 Jan 2022 13:44:01 -0800 Subject: [PATCH 1/2] Accidentally hardcoded the branch name for testing. Fixed. --- .github/workflows/build-and-validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-validate.yml b/.github/workflows/build-and-validate.yml index ce4e667277..0af278ae59 100644 --- a/.github/workflows/build-and-validate.yml +++ b/.github/workflows/build-and-validate.yml @@ -358,7 +358,7 @@ jobs: python detection_testing_execution.py run --branch ${{ github.event.pull_request.head.ref }} --pr_number ${{ github.event.pull_request.number }} --mode changes --mock --config_file test_config_github_actions.json else echo "Push from branch [${{ steps.vars.outputs.branch }}]" - python detection_testing_execution.py run --branch develop --mode changes --mock --config_file test_config_github_actions.json + python detection_testing_execution.py run --branch [${{ steps.vars.outputs.branch }}] --mode changes --mock --config_file test_config_github_actions.json fi mv *-test-run.json replicate_test.json From c9d0e72cf30f2cc5488daac06f2565817d09f73b Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Wed, 12 Jan 2022 14:04:38 -0800 Subject: [PATCH 2/2] removed accidental brackets from branch name in CI testing branch name. --- .github/workflows/build-and-validate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-validate.yml b/.github/workflows/build-and-validate.yml index 0af278ae59..c6ed4e4db5 100644 --- a/.github/workflows/build-and-validate.yml +++ b/.github/workflows/build-and-validate.yml @@ -358,7 +358,7 @@ jobs: python detection_testing_execution.py run --branch ${{ github.event.pull_request.head.ref }} --pr_number ${{ github.event.pull_request.number }} --mode changes --mock --config_file test_config_github_actions.json else echo "Push from branch [${{ steps.vars.outputs.branch }}]" - python detection_testing_execution.py run --branch [${{ steps.vars.outputs.branch }}] --mode changes --mock --config_file test_config_github_actions.json + python detection_testing_execution.py run --branch ${{ steps.vars.outputs.branch }} --mode changes --mock --config_file test_config_github_actions.json fi mv *-test-run.json replicate_test.json