2022-08-01 13:47:55 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const pipelineOperations: INodeProperties[] = [
|
2020-06-30 15:46:45 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2020-06-30 15:46:45 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['pipeline'],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a pipeline',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get a pipeline',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2020-06-30 15:46:45 -07:00
|
|
|
value: 'getAll',
|
2022-09-13 03:36:36 -07:00
|
|
|
description: 'Get many pipelines',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many pipelines',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Trigger',
|
|
|
|
value: 'trigger',
|
|
|
|
description: 'Trigger a pipeline',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Trigger a pipeline',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'get',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-06-30 15:46:45 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const pipelineFields: INodeProperties[] = [
|
2022-08-01 13:47:55 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* pipeline:shared */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-07-06 09:18:36 -07:00
|
|
|
{
|
2020-07-07 02:10:01 -07:00
|
|
|
displayName: 'Provider',
|
2020-07-06 09:18:36 -07:00
|
|
|
name: 'vcs',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Bitbucket',
|
|
|
|
value: 'bitbucket',
|
|
|
|
},
|
2020-07-07 02:10:01 -07:00
|
|
|
{
|
2020-07-07 02:15:53 -07:00
|
|
|
name: 'GitHub',
|
2020-07-07 02:10:01 -07:00
|
|
|
value: 'github',
|
|
|
|
},
|
2020-07-06 09:18:36 -07:00
|
|
|
],
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['get', 'getAll', 'trigger'],
|
|
|
|
resource: ['pipeline'],
|
2020-07-06 09:18:36 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Version control system',
|
|
|
|
},
|
2020-06-30 15:46:45 -07:00
|
|
|
{
|
|
|
|
displayName: 'Project Slug',
|
|
|
|
name: 'projectSlug',
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['get', 'getAll', 'trigger'],
|
|
|
|
resource: ['pipeline'],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2020-07-07 02:10:01 -07:00
|
|
|
placeholder: 'n8n-io/n8n',
|
2020-07-06 09:18:36 -07:00
|
|
|
description: 'Project slug in the form org-name/repo-name',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
2020-07-07 02:10:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* pipeline:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-06-30 15:46:45 -07:00
|
|
|
{
|
|
|
|
displayName: 'Pipeline Number',
|
|
|
|
name: 'pipelineNumber',
|
|
|
|
type: 'number',
|
2020-07-06 09:18:36 -07:00
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
},
|
2020-06-30 15:46:45 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['get'],
|
|
|
|
resource: ['pipeline'],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
2020-07-06 09:18:36 -07:00
|
|
|
default: 1,
|
2020-06-30 15:46:45 -07:00
|
|
|
description: 'The number of the pipeline',
|
|
|
|
},
|
2020-07-07 02:10:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* pipeline:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-06-30 15:46:45 -07:00
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['pipeline'],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
operation: ['getAll'],
|
|
|
|
resource: ['pipeline'],
|
|
|
|
returnAll: [false],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
|
|
|
default: 100,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Filters',
|
|
|
|
name: 'filters',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Filter',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['pipeline'],
|
|
|
|
operation: ['getAll'],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Branch',
|
|
|
|
name: 'branch',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'The name of a vcs branch',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-07-07 02:10:01 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* pipeline:trigger */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-06-30 15:46:45 -07:00
|
|
|
{
|
|
|
|
displayName: 'Additional Fields',
|
|
|
|
name: 'additionalFields',
|
|
|
|
type: 'collection',
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
default: {},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['pipeline'],
|
|
|
|
operation: ['trigger'],
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Branch',
|
|
|
|
name: 'branch',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'The branch where the pipeline ran. The HEAD commit on this branch was used for the pipeline. Note that branch and tag are mutually exclusive.',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Tag',
|
|
|
|
name: 'tag',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-08-01 13:47:55 -07:00
|
|
|
description:
|
|
|
|
'The tag used by the pipeline. The commit that this tag points to was used for the pipeline. Note that branch and tag are mutually exclusive',
|
2020-06-30 15:46:45 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|