Skip to content

Commit

Permalink
debugging notification
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jun 14, 2024
1 parent 1cd1cd7 commit 863fb90
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/daily_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ jobs:
echo "BuildTests: ${{ needs.BuildTests.result }}"
echo "ExampleDataCache: ${{ needs.ExampleDataCache.result }}"
echo "ExampleDataTests: ${{ needs.ExampleDataTests.result }}"
- name: Printout logic trigger
run: |
(
needs.DevTests.result == 'failure'
|| needs.LiveServices.result == 'failure'
|| needs.BuildTests.result == 'failure'
|| needs.ExampleDataCache.result == 'failure'
|| needs.ExampleDataTests.result == 'failure'
)
- uses: dawidd6/action-send-mail@v3
with:
server_address: smtp.gmail.com
Expand Down

0 comments on commit 863fb90

Please sign in to comment.