diff --git a/.github/workflows/ci-test.yml b/.github/workflows/ci-test.yml index 2eb67038c0..6c4730b0b5 100644 --- a/.github/workflows/ci-test.yml +++ b/.github/workflows/ci-test.yml @@ -276,9 +276,9 @@ jobs: - name: Set Commit Message run: | if [[ ${{ inputs.pr }} -ne 0 ]]; then - echo COMMIT_INFO_MESSAGE=Run from PR# ${{ inputs.pr }} on commit $(git show -s --pretty=%H | cut -c 1-7) >> $GITHUB_ENV + echo COMMIT_INFO_MESSAGE="Run from PR# ${{ inputs.pr }} on commit $(git show -s --pretty=%H | cut -c 1-7)" >> $GITHUB_ENV else - echo COMMIT_INFO_MESSAGE= ${{ github.event.pull_request.title }} >> $GITHUB_ENV + echo COMMIT_INFO_MESSAGE="${{ github.event.pull_request.title }}" >> $GITHUB_ENV fi - name: Run the cypress test