n8n/packages/nodes-base/nodes/Git/descriptions/AddDescription.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

20 lines
423 B
TypeScript

import { 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,
},
];