mirror of
https://github.com/domfelipe/vibeflow-n8n.git
synced 2026-08-07 05:16:43 +00:00
feat: release Vibeflow n8n v0.7.0
This commit is contained in:
parent
260d447f40
commit
d09d9a7c8f
9 changed files with 315 additions and 74 deletions
57
examples/sample-workflow-export.json
Normal file
57
examples/sample-workflow-export.json
Normal file
|
|
@ -0,0 +1,57 @@
|
|||
{
|
||||
"name": "Vibeflow Demo - Support Escalation",
|
||||
"active": false,
|
||||
"meta": {
|
||||
"source": "vibeflow-n8n",
|
||||
"note": "Illustrative export skeleton for documentation and local experimentation."
|
||||
},
|
||||
"nodes": [
|
||||
{
|
||||
"id": "Webhook_1",
|
||||
"name": "Incoming Ticket",
|
||||
"type": "n8n-nodes-base.webhook",
|
||||
"position": [260, 280],
|
||||
"parameters": {
|
||||
"path": "support-escalation-demo",
|
||||
"httpMethod": "POST"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "Set_1",
|
||||
"name": "Normalize Payload",
|
||||
"type": "n8n-nodes-base.set",
|
||||
"position": [520, 280],
|
||||
"parameters": {
|
||||
"keepOnlySet": false,
|
||||
"values": {
|
||||
"string": [
|
||||
{"name": "ticket_id", "value": "={{$json.id || ''}}"},
|
||||
{"name": "priority", "value": "={{$json.priority || 'normal'}}"},
|
||||
{"name": "summary", "value": "={{$json.summary || ''}}"}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "If_1",
|
||||
"name": "Urgent?",
|
||||
"type": "n8n-nodes-base.if",
|
||||
"position": [780, 280],
|
||||
"parameters": {
|
||||
"conditions": {
|
||||
"string": [
|
||||
{"value1": "={{$json.priority}}", "operation": "equal", "value2": "high"}
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"connections": {
|
||||
"Incoming Ticket": {
|
||||
"main": [[{"node": "Normalize Payload", "type": "main", "index": 0}]]
|
||||
},
|
||||
"Normalize Payload": {
|
||||
"main": [[{"node": "Urgent?", "type": "main", "index": 0}]]
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue