Files
n8n_Demo/n8n-n8n-1.109.2/packages/nodes-base/nodes/Git/descriptions/AddDescription.ts
2025-09-08 04:48:28 +08:00

20 lines
428 B
TypeScript
Executable File

import type { INodeProperties } from 'n8n-workflow';
export const addFields: INodeProperties[] = [
{
displayName: 'Paths to Add',
name: 'pathsToAdd',
type: 'string',
displayOptions: {
show: {
operation: ['add'],
},
},
default: '',
placeholder: 'README.md',
description:
'Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add',
required: true,
},
];