(01)Install Slack
Linux
1sudo snap install slack2# Or use web: https://slack.comTeam messaging — webhooks and CI notifications
What is this?
Slack is team chat — integrate CI/CD pipelines to post deploy status and alerts.
Step 01
1sudo snap install slack2# Or use web: https://slack.comStep 02
1# Incoming webhook (Slack app → Incoming Webhooks)2curl -X POST -H 'Content-type: application/json' \3 --data '{"text":"Deploy finished ✅"}' \4 https://hooks.slack.com/services/T000/B000/XXXX5 6# Jenkins: Slack Notification plugin → workspace + channelStep 03
1curl -I https://slack.com/api/api.testStep 04
1curl -X POST -H 'Content-type: application/json' \2 --data '{"text":"test"}' \3 https://hooks.slack.com/services/T000/B000/XXXX4# Regenerate webhook in Slack app settings