From 863fb9042f70f814fc47ff884612d20e0e10243a Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:53:12 -0400 Subject: [PATCH] debugging notification --- .github/workflows/daily_tests.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/daily_tests.yml b/.github/workflows/daily_tests.yml index ca314bb5d..4689da1ff 100644 --- a/.github/workflows/daily_tests.yml +++ b/.github/workflows/daily_tests.yml @@ -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