2021-06-05 13:43:54 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
export const commitFields = [
{
displayName : 'Message' ,
name : 'message' ,
type : 'string' ,
displayOptions : {
show : {
operation : [
'commit' ,
] ,
} ,
} ,
default : '' ,
description : 'The commit message to use.' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
displayOptions : {
show : {
operation : [
'commit' ,
] ,
} ,
} ,
placeholder : 'Add Option' ,
default : { } ,
options : [
{
displayName : 'Paths to Add' ,
name : 'pathsToAdd' ,
type : 'string' ,
default : '' ,
placeholder : '/data/file1.json' ,
2021-10-27 13:00:13 -07:00
description : ` Comma separated list of paths (absolute or relative to Repository Path) of files or folders to commit. If not set will all "added" files and folders be committed. ` ,
2021-06-05 13:43:54 -07:00
} ,
] ,
} ,
] as INodeProperties [ ] ;