From 67a306c629ace8d5ae9f3edbc99f779ddafa4fea Mon Sep 17 00:00:00 2001 From: Julia Eskew Date: Tue, 5 Apr 2022 15:49:19 -0400 Subject: [PATCH] chore: Remove email notification after CI failure - PR owner should handle CI failures. --- .github/workflows/ci.yml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5a3f41e8..348cc6e5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -45,17 +45,3 @@ jobs: - name: Run Coverage uses: codecov/codecov-action@v2 - - - name: Send failure notification - if: ${{ failure() }} - uses: dawidd6/action-send-mail@v3 - with: - server_address: email-smtp.us-east-1.amazonaws.com - server_port: 465 - username: ${{secrets.EDX_SMTP_USERNAME}} - password: ${{secrets.EDX_SMTP_PASSWORD}} - subject: CI workflow failed in ${{github.repository}} - to: teaching-and-learning@edx.opsgenie.net - from: github-actions - body: CI workflow in ${{github.repository}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" -