diff --git a/workflows/example_hello_workflow.json b/workflows/example_hello_workflow.json new file mode 100644 index 0000000..8781a9f --- /dev/null +++ b/workflows/example_hello_workflow.json @@ -0,0 +1,43 @@ +{ + "name": "hello-from-repo", + "active": false, + "nodes": [ + { + "parameters": {}, + "id": "Manual", + "name": "Manual Trigger", + "type": "n8n-nodes-base.manualTrigger", + "typeVersion": 1, + "position": [ + 240, + 300 + ] + }, + { + "parameters": { + "functionCode": "return [{ json: { message: 'Hello from Gitea' } }];" + }, + "id": "Fn", + "name": "Function", + "type": "n8n-nodes-base.function", + "typeVersion": 2, + "position": [ + 520, + 300 + ] + } + ], + "connections": { + "Manual Trigger": { + "main": [ + [ + { + "node": "Function", + "type": "main", + "index": 0 + } + ] + ] + } + } +} \ No newline at end of file