We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 34a5149 + b1786f4 commit 7f150bcCopy full SHA for 7f150bc
.github/workflows/test.yml
@@ -23,4 +23,26 @@ jobs:
23
pip install pytest responses requests-mock
24
- name: Test with pytest
25
run: |
26
- pytest --vv
+ pytest -vv
27
+
28
+ - name: Notify slack success
29
+ if: success()
30
+ env:
31
+ SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
32
+ uses: voxmedia/github-action-slack-notify-build@v1.1.1
33
+ with:
34
+ message_id: ${{ steps.slack.outputs.message_id }}
35
+ channel: github-actions
36
+ status: SUCCESS
37
+ color: good
38
39
+ - name: Notify slack fail
40
+ if: failure()
41
42
43
44
45
46
47
+ status: FAILED
48
+ color: danger
0 commit comments