2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2021-06-05 13:43:54 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const cloneFields: INodeProperties[] = [
|
2021-06-05 13:43:54 -07:00
|
|
|
{
|
|
|
|
displayName: 'Source Repository',
|
|
|
|
name: 'sourceRepository',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['clone'],
|
2021-06-05 13:43:54 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
placeholder: 'https://github.com/n8n-io/n8n',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The URL or path of the repository to clone',
|
2021-06-05 13:43:54 -07:00
|
|
|
required: true,
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|