-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Remove email notification after CI failure - PR owner should h…
…andle CI failures.
- Loading branch information
Julia Eskew
committed
Apr 5, 2022
1 parent
336579b
commit 67a306c
Showing
1 changed file
with
0 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: [email protected] | ||
from: github-actions <[email protected]> | ||
body: CI workflow in ${{github.repository}} failed! For details see "github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" | ||
|