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 pushFields: INodeProperties[] = [
|
2021-06-05 13:43:54 -07:00
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
name: 'options',
|
|
|
|
type: 'collection',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-17 08:50:24 -07:00
|
|
|
operation: ['push'],
|
2021-06-05 13:43:54 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
placeholder: 'Add Option',
|
|
|
|
default: {},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Target Repository',
|
|
|
|
name: 'targetRepository',
|
|
|
|
type: 'string',
|
|
|
|
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 push to',
|
2021-06-05 13:43:54 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|