2022-08-17 08:50:24 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2021-06-05 13:43:54 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const addFields: INodeProperties[] = [
|
2021-06-05 13:43:54 -07:00
|
|
|
{
|
|
|
|
displayName: 'Paths to Add',
|
|
|
|
name: 'pathsToAdd',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['add'],
|
2021-06-05 13:43:54 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
placeholder: 'README.md',
|
2022-08-17 08:50:24 -07:00
|
|
|
description:
|
|
|
|
'Comma-separated list of paths (absolute or relative to Repository Path) of files or folders to add',
|
2021-06-05 13:43:54 -07:00
|
|
|
required: true,
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|