2020-06-30 15:46:45 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
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 : {
resource : [
'pipeline' ,
] ,
} ,
} ,
options : [
{
name : 'Get' ,
value : 'get' ,
description : 'Get a pipeline' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all pipelines' ,
} ,
{
name : 'Trigger' ,
value : 'trigger' ,
description : 'Trigger a pipeline' ,
} ,
] ,
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 [ ] = [
2020-06-30 15:46:45 -07:00
/* -------------------------------------------------------------------------- */
2020-07-07 02:10:01 -07:00
/* pipeline:shared */
2020-06-30 15:46:45 -07:00
/* -------------------------------------------------------------------------- */
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 : {
operation : [
'get' ,
2020-07-07 02:10:01 -07:00
'getAll' ,
'trigger' ,
2020-07-06 09:18:36 -07:00
] ,
resource : [
'pipeline' ,
] ,
} ,
} ,
default : '' ,
description : 'Version control system' ,
} ,
2020-06-30 15:46:45 -07:00
{
displayName : 'Project Slug' ,
name : 'projectSlug' ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'get' ,
2020-07-07 02:10:01 -07:00
'getAll' ,
'trigger' ,
2020-06-30 15:46:45 -07:00
] ,
resource : [
'pipeline' ,
] ,
} ,
} ,
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
/* -------------------------------------------------------------------------- */
/* 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 : {
operation : [
'get' ,
] ,
resource : [
'pipeline' ,
] ,
} ,
} ,
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
2020-06-30 15:46:45 -07:00
/* -------------------------------------------------------------------------- */
/* pipeline:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'pipeline' ,
] ,
} ,
} ,
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 : {
operation : [
'getAll' ,
] ,
resource : [
'pipeline' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
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 : {
resource : [
'pipeline' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
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
2020-06-30 15:46:45 -07:00
/* -------------------------------------------------------------------------- */
/* pipeline:trigger */
/* -------------------------------------------------------------------------- */
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'pipeline' ,
] ,
operation : [
'trigger' ,
] ,
} ,
} ,
options : [
{
displayName : 'Branch' ,
name : 'branch' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -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-05-06 14:01:25 -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
] ;