From bcb5fb299d8e5cb3eb28fa982548ba4b9eb9fe0d Mon Sep 17 00:00:00 2001 From: npetrill Date: Tue, 14 Jan 2025 14:20:16 -0500 Subject: [PATCH] make testType not required --- .github/workflows/test_illumina_genotyping_array.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/test_illumina_genotyping_array.yml b/.github/workflows/test_illumina_genotyping_array.yml index 1cf2d2bf93..69d5249d08 100644 --- a/.github/workflows/test_illumina_genotyping_array.yml +++ b/.github/workflows/test_illumina_genotyping_array.yml @@ -129,13 +129,12 @@ jobs: # For workflow_dispatch, default based on target branch if [ "${{ github.ref }}" == "refs/heads/master" ]; then echo "testType=Scientific" >> $GITHUB_ENV - echo "testType=Scientific" - elif [ "${{ github.ref }}" == "refs/heads/staging" ]; then - echo "testType=Plumbing" >> $GITHUB_ENV - echo "testType=Plumbing" + echo ${{ github.ref }} + echo "testType=Scientific as the branch is master" else echo "testType=Plumbing" >> $GITHUB_ENV - echo "testType=Plumbing" + echo ${{ github.ref }} + echo "testType=Plumbing as the branch is not master" fi fi