diff --git a/.github/workflows/parallel.yml b/.github/workflows/parallel.yml index fa95dc7..c4bb11d 100644 --- a/.github/workflows/parallel.yml +++ b/.github/workflows/parallel.yml @@ -6,9 +6,7 @@ jobs: # OS runs-on: ubuntu-latest strategy: - # when one test fails, DO NOT cancel the other - # containers, because this will kill Cypress processes - # leaving the Dashboard hanging ... + # when one test fails, DO NOT cancel the other containers, because this will kill Cypress processes leaving the Dashboard hanging ... # https://github.com/cypress-io/github-action/issues/48 fail-fast: false matrix: @@ -29,9 +27,10 @@ jobs: env: # pass the Dashboard record key as an environment variable CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} - # Recommended: pass the GitHub token lets this action correctly - # determine the unique run id necessary to re-run the checks + # Recommended: pass the GitHub token lets this action correctly determine the unique run id necessary to re-run the checks GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # - if the event is push, the title will be undefined and Cypress will get the commit message from Git information # - if the event is pull_request, then we set the commit message to the pull request title - COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }} \ No newline at end of file + COMMIT_INFO_MESSAGE: ${{ github.event.pull_request.title }} + #This will allow Cypress bot to show in addition to status checks + COMMIT_INFO_SHA: ${{ github.event.pull_request.head.sha }} \ No newline at end of file