Merge pull request #12 from shayanabbas/main

Import all workflows at once
This commit is contained in:
Eliad Shahar 2025-06-14 19:57:52 +03:00 committed by GitHub
commit c53949366e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 18 additions and 0 deletions

View File

@ -91,6 +91,10 @@ Files are organized with descriptive names indicating their functionality.
- **Categories**: Data sync, notifications, integrations, monitoring, and more
- **Services**: 100+ different platforms and APIs represented
To import all workflows at once run following:
`./import-workflows.sh`
---
## 🤝 Contribution

View File

@ -40,6 +40,10 @@
在執行前,請確保檢查並修改所需的憑證或 webhook URL。
若要一次匯入所有工作流程,請執行下列命令:
`./import-workflows.sh`
---
## 📋 工作流程清單

10
import-workflows.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
WORKFLOW_DIR="./workflows"
for file in "$WORKFLOW_DIR"/*.json
do
echo "Importing $file..."
npx n8n import:workflow --input="$file"
done