From 1cd1cd72bce74646939e0579221c51f2240737dd Mon Sep 17 00:00:00 2001 From: Cody Baker <51133164+CodyCBakerPhD@users.noreply.github.com> Date: Fri, 14 Jun 2024 11:04:37 -0400 Subject: [PATCH] debug daily notification --- .github/workflows/daily_tests.yml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/.github/workflows/daily_tests.yml b/.github/workflows/daily_tests.yml index 1dd06eab0..ca314bb5d 100644 --- a/.github/workflows/daily_tests.yml +++ b/.github/workflows/daily_tests.yml @@ -42,14 +42,21 @@ jobs: if: | ${{ always() && ( - needs.DevTests.result == 'failure' - || needs.LiveServices.result == 'failure' - || needs.BuildTests.result == 'failure' - || needs.ExampleDataCache.result == 'failure' - || needs.ExampleDataTests.result == 'failure' + needs.DevTests.result == 'failure' + || needs.LiveServices.result == 'failure' + || needs.BuildTests.result == 'failure' + || needs.ExampleDataCache.result == 'failure' + || needs.ExampleDataTests.result == 'failure' ) }} steps: + - name: Printout which failed + run: | + echo "DevTests: ${{ needs.DevTests.result }}" + echo "LiveServices: ${{ needs.LiveServices.result }}" + echo "BuildTests: ${{ needs.BuildTests.result }}" + echo "ExampleDataCache: ${{ needs.ExampleDataCache.result }}" + echo "ExampleDataTests: ${{ needs.ExampleDataTests.result }}" - uses: dawidd6/action-send-mail@v3 with: server_address: smtp.gmail.com