The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"nodes": [
{
"name": "Netlify Trigger",
"type": "n8n-nodes-base.netlifyTrigger",
"position": [
450,
300
],
"parameters": {
"event": "deployFailed",
"siteId": "ab52947e-a696-4498-a5a1-fae7fbe30c84"
},
"credentials": {
"netlifyApi": "<your credential>"
},
"typeVersion": 1
},
{
"name": "Slack",
"type": "n8n-nodes-base.slack",
"position": [
650,
300
],
"parameters": {
"text": "=\ud83d\udea8 Deploy Failed \ud83d\udea8\nDeploy for the site {{$json[\"name\"]}} failed.\nError Message: {{$json[\"error_message\"]}}\nYou can find more information here: https://app.netlify.com/sites/{{$json[\"name\"]}}/deploys/{{$json[\"id\"]}}",
"channel": "general",
"attachments": [],
"otherOptions": {}
},
"credentials": {
"slackApi": "<your credential>"
},
"typeVersion": 1
}
],
"connections": {
"Netlify Trigger": {
"main": [
[
{
"node": "Slack",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
netlifyApislackApi
About this workflow
Send Notification When Deployment Fails. Uses netlifyTrigger, slack. Event-driven trigger; 2 nodes.
Source: https://github.com/Zie619/n8n-workflows — original creator credit. Request a take-down →