Skip to content

Commit

Permalink
Merge pull request #106 from brainglobe/add-slack-notification
Browse files Browse the repository at this point in the history
Notify slack on scheduled test failure
  • Loading branch information
alessandrofelder authored Nov 11, 2024
2 parents 538400c + cf92c96 commit 3a75006
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,17 @@ jobs:
secret-codecov-token: ${{ secrets.CODECOV_TOKEN }}
codecov-flags: "numba"


- name: Notify slack on scheduled failure
if: failure() && github.event_name == 'schedule'
uses: ravsamhq/notify-slack-action@v2
with:
status: ${{ job.status }} # required
notify_when: 'failure'
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_NOTIFYBOT_WEBHOOK_URL }} # required


build_sdist_wheels:
name: Build source distribution
needs: [test]
Expand Down

0 comments on commit 3a75006

Please sign in to comment.