diff --git a/.github/workflows/approveAndMergeReleasePR.js b/.github/workflows/approveAndMergeReleasePR.js index 71899422c..4e19ce095 100644 --- a/.github/workflows/approveAndMergeReleasePR.js +++ b/.github/workflows/approveAndMergeReleasePR.js @@ -54,7 +54,7 @@ program if (!knownBug) { failedNewTests.push({ title: testCase.titleParts[1], - url: issue.url, + url: issue.html_url, spec: testCase.titleParts[0], }); } diff --git a/.github/workflows/tests-nightly.yml b/.github/workflows/tests-nightly.yml index 9828e2f4d..d672c06e6 100644 --- a/.github/workflows/tests-nightly.yml +++ b/.github/workflows/tests-nightly.yml @@ -212,16 +212,18 @@ jobs: - name: Set tag for tests id: set-tag-for-tests + uses: actions/github-script@v6 env: is_old_version: ${{ needs.get-environment-variables.outputs.is_old_version }} - old_version_test_tag: "@oldRelease" - new_version_test_tag: "@stable" - run: | - if [[ $is_old_version == "true" ]]; then - echo "TEST_TAG=$old_version_test_tag" >> $GITHUB_OUTPUT - else - echo "TEST_TAG=$new_version_test_tag" >> $GITHUB_OUTPUT - fi + with: + result-encoding: string + script: | + const { is_old_version } = process.env + if(is_old_version == "true"){ + return "@oldRelease" + }else{ + return "@stable" + } - name: Cypress run - automatically id: cypress