diff --git a/import-workflows.sh b/import-workflows.sh new file mode 100755 index 0000000..0a3197f --- /dev/null +++ b/import-workflows.sh @@ -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 +