Skip to content

Commit 568a574

Browse files
authored
[github-action] fix rebase misstake (#16648)
1 parent 2e519e7 commit 568a574

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/preview-env-check-regressions.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,13 @@ jobs:
122122
with:
123123
paths: "test/tests/**/TEST.xml"
124124
if: always()
125-
echo "No regressions caught because I didn't check anything 🤡 Sleeping for 2 minutes."
126-
sleep 60
125+
- name: Slack Notification
126+
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"
127132
- name: Delete preview environment
128133
if: always()
129134
uses: ./.github/actions/delete-preview

0 commit comments

Comments
 (0)