We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 437e0bc commit e604207Copy full SHA for e604207
.github/workflows/test_and_deploy.yml
@@ -51,6 +51,17 @@ jobs:
51
python-version: ${{ matrix.python-version }}
52
secret-codecov-token: ${{ secrets.CODECOV_TOKEN }}
53
54
+
55
+ - name: Notify slack on scheduled failure
56
+ if: failure() && github.event_name == 'schedule'
57
+ uses: ravsamhq/notify-slack-action@v2
58
+ with:
59
+ status: ${{ job.status }} # required
60
+ notify_when: 'failure'
61
+ env:
62
+ SLACK_WEBHOOK_URL: ${{ secrets.SLACK_NOTIFYBOT_WEBHOOK_URL }} # required
63
64
65
build_sdist_wheels:
66
name: Build source distribution
67
needs: [test]
0 commit comments