diff --git a/.github/workflows/terraform_and_deploy.yaml b/.github/workflows/terraform_and_deploy.yaml index fff68ce..735176d 100644 --- a/.github/workflows/terraform_and_deploy.yaml +++ b/.github/workflows/terraform_and_deploy.yaml @@ -73,7 +73,7 @@ jobs: if: | always() && - needs.terraform.result == 'success' || needs.terraform.result == 'skipped' && + (needs.terraform.result == 'success' || needs.terraform.result == 'skipped') && needs.rubocop.result == 'success' && needs.rspec.result == 'success' steps: @@ -140,8 +140,8 @@ jobs: env: SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} SLACK_MESSAGE: | - Your deployment of [${{ github.event.pull_request.title }}](${{ github.event.pull_request.html_url }}) - has failed' + Your deployment of ${{ github.even.pull_request.title }}