From 80adf39f80421bd9bf729a0eb86602b96e92d35c Mon Sep 17 00:00:00 2001 From: markodonnell-deriv <144238191+markodonnell-deriv@users.noreply.github.com> Date: Thu, 29 Feb 2024 09:14:30 +0000 Subject: [PATCH] Update smoketests.yml - change e2e skip term If the term 'skipsm' is specified in the branch name then skip the e2e tests (used to be 'quill'). This is because the dev knows they are making radical change which will need the tests to be modified at a later date. --- .github/workflows/smoketests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoketests.yml b/.github/workflows/smoketests.yml index 54837b2321d..4a74885b493 100644 --- a/.github/workflows/smoketests.yml +++ b/.github/workflows/smoketests.yml @@ -48,7 +48,7 @@ jobs: - name: Cypress run # Uses the official Cypress GitHub action https://github.com/cypress-io/github-action - if: "!contains(steps.pr_information.outputs.branch_name, 'quill')" + if: "!contains(steps.pr_information.outputs.branch_name, 'skipsm')" uses: cypress-io/github-action@v6 with: # Records to Cypress Cloud @@ -71,7 +71,7 @@ jobs: - name: Set comments message id: set_msg - if: always() && !contains(steps.pr_information.outputs.branch_name, 'quill') + if: always() && !contains(steps.pr_information.outputs.branch_name, 'skipsm') run: | # Using shell script to conditionally set the message if [[ "${{ job.status }}" == "success" ]]; then @@ -81,7 +81,7 @@ jobs: fi - name: Leave comment - if: always() && !contains(steps.pr_information.outputs.branch_name, 'quill') + if: always() && !contains(steps.pr_information.outputs.branch_name, 'skipsm') uses: marocchino/sticky-pull-request-comment@v2 with: header: Smoke tests status update