From c8d589cce74dc1267d8058fc8f0b61b516969b79 Mon Sep 17 00:00:00 2001 From: Jordan Date: Wed, 6 Mar 2024 09:48:10 -0500 Subject: [PATCH] fix(GitHub Document Loader Node): Fix issue with ignore paths not working correctly (#8798) --- .../DocumentGithubLoader/DocumentGithubLoader.node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts b/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts index 2d640d9818..0c91e7370e 100644 --- a/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts +++ b/packages/@n8n/nodes-langchain/nodes/document_loaders/DocumentGithubLoader/DocumentGithubLoader.node.ts @@ -83,7 +83,7 @@ export class DocumentGithubLoader implements INodeType { }, { displayName: 'Ignore Paths', - name: 'recursive', + name: 'ignorePaths', type: 'string', description: 'Comma-separated list of paths to ignore, e.g. "docs, src/tests', default: '',