n8n-nodes-base
Version:
Base nodes of n8n
36 lines • 1.11 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.pushFields = void 0;
exports.pushFields = [
{
displayName: 'Options',
name: 'options',
type: 'collection',
displayOptions: {
show: {
operation: ['push'],
},
},
placeholder: 'Add option',
default: {},
options: [
{
displayName: 'Branch',
name: 'branch',
type: 'string',
default: '',
placeholder: 'main',
description: 'The branch to switch to before pushing. If empty or not set, will push current branch.',
},
{
displayName: 'Target Repository',
name: 'targetRepository',
type: 'string',
default: '',
placeholder: 'https://github.com/n8n-io/n8n',
description: 'The URL or path of the repository to push to',
},
],
},
];
//# sourceMappingURL=PushDescription.js.map