Skip to content

Commit

Permalink
debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
CodyCBakerPhD authored Jun 16, 2024
1 parent 67ed44f commit bfb5644
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions .github/workflows/daily_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,7 @@ jobs:
NotifyOnAnyFailure:
runs-on: ubuntu-latest
needs: [DevTests, LiveServices, BuildTests, ExampleDataCache, ExampleDataTests]
# If condition needs 'always' to trigger at all
if: always() && (
${{ (needs.DevTests.result == 'failure')
|| (needs.LiveServices.result == 'failure')
|| (needs.BuildTests.result == 'failure')
|| (needs.ExampleDataCache.result == 'failure')
|| (needs.ExampleDataTests.result == 'failure')
}}
)
if: ${{ (needs.DevTests.result == 'failure') || (needs.LiveServices.result == 'failure') || (needs.BuildTests.result == 'failure') || (needs.ExampleDataCache.result == 'failure') || (needs.ExampleDataTests.result == 'failure') }}
steps:
- uses: dawidd6/action-send-mail@v3
with:
Expand Down

0 comments on commit bfb5644

Please sign in to comment.