We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e519e7 commit 568a574Copy full SHA for 568a574
.github/workflows/preview-env-check-regressions.yml
@@ -122,8 +122,13 @@ jobs:
122
with:
123
paths: "test/tests/**/TEST.xml"
124
if: always()
125
- echo "No regressions caught because I didn't check anything 🤡 Sleeping for 2 minutes."
126
- sleep 60
+ - name: Slack Notification
+ uses: rtCamp/action-slack-notify@v2
127
+ if: success() || failure()
128
+ env:
129
+ SLACK_WEBHOOK: ${{ secrets.DEVELOPMENT_PIPELINE_SLACK_WEBHOOK_URL }}
130
+ SLACK_COLOR: ${{ job.status }}
131
+ SLACK_MESSAGE: "`${{ needs.configuration.outputs.version}}` ${{ steps.test_summary.outputs.passed }}/${{ steps.test_summary.outputs.total }} tests passed"
132
- name: Delete preview environment
133
134
uses: ./.github/actions/delete-preview
0 commit comments