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 →
{
"name": "Gitlab release notes",
"nodes": [
{
"parameters": {},
"name": "Start",
"type": "n8n-nodes-base.start",
"typeVersion": 1,
"position": [
440,
170
]
},
{
"parameters": {
"httpMethod": "POST",
"path": "gitlab-release",
"options": {}
},
"name": "Webhook",
"type": "n8n-nodes-base.webhook",
"typeVersion": 1,
"position": [
630,
170
]
},
{
"parameters": {
"mode": "mergeByIndex"
},
"name": "Merge",
"type": "n8n-nodes-base.merge",
"typeVersion": 1,
"position": [
1040,
280
]
},
{
"parameters": {
"functionCode": "return item[\"body\"]"
},
"name": "getBody",
"type": "n8n-nodes-base.functionItem",
"typeVersion": 1,
"position": [
840,
200
]
},
{
"parameters": {
"authentication": "headerAuth",
"requestMethod": "POST",
"url": "https://gitlab.com/api/v4/markdown",
"options": {},
"bodyParametersUi": {
"parameter": [
{
"name": "text",
"value": "={{$json[\"body\"][\"description\"]}}"
},
{
"name": "gfm",
"value": "true"
},
{
"name": "project",
"value": "your-project"
}
]
},
"headerParametersUi": {
"parameter": []
}
},
"name": "convertMdToHtml",
"type": "n8n-nodes-base.httpRequest",
"typeVersion": 1,
"position": [
840,
370
],
"credentials": {
"httpHeaderAuth": "<your credential>"
}
},
{
"parameters": {
"resource": "mail",
"fromEmail": "workflow@domain.tld",
"fromName": "Workflow Sender",
"toEmail": "you@domain.tld",
"subject": "Version {{$json[\"name\"]}}",
"contentType": "text/html",
"contentValue": "={{$json[\"html\"]}}",
"additionalFields": {}
},
"name": "SendGrid",
"type": "n8n-nodes-base.sendGrid",
"typeVersion": 1,
"position": [
1240,
280
],
"credentials": {
"sendGridApi": "<your credential>"
}
}
],
"connections": {
"Merge": {
"main": [
[
{
"node": "FunctionItem",
"type": "main",
"index": 0
},
{
"node": "SendGrid",
"type": "main",
"index": 0
}
]
]
},
"getBody": {
"main": [
[
{
"node": "Merge",
"type": "main",
"index": 0
}
]
]
},
"convertMdToHtml": {
"main": [
[
{
"node": "Merge",
"type": "main",
"index": 1
}
]
]
},
"Webhook": {
"main": [
[
{
"node": "getBody",
"type": "main",
"index": 0
},
{
"node": "convertMdToHtml",
"type": "main",
"index": 0
}
]
]
}
},
"active": true,
"settings": {
"timezone": "America/La_Paz",
"saveExecutionProgress": "DEFAULT"
},
"id": "1"
}
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.
httpHeaderAuthsendGridApi
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
Gitlab release notes. Uses start, functionItem, httpRequest, sendGrid. Webhook trigger; 6 nodes.
Source: https://gist.github.com/sboli/b537c558eb31df4f245c3a0dfba703f2 — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
Flow. Uses mongoDb, stripe, intercom, mailchimp. Webhook trigger; 10 nodes.
Flow. Uses slack, httpRequest, sendGrid. Webhook trigger; 7 nodes.
Flow. Uses httpRequest, sendGrid, mongoDb. Webhook trigger; 7 nodes.
AI Document Processor - Intelligent Data Extraction. Uses httpRequest, readPDF, googleSheets, slack. Webhook trigger; 20 nodes.
Founder Approval Gate. Uses httpRequest, sendGrid. Webhook trigger; 7 nodes.