mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
b03e358a12
* 👕 Enable `consistent-type-imports` for nodes-base
* 👕 Apply to nodes-base
* ⏪ Undo unrelated changes
* 🚚 Move to `.eslintrc.js` in nodes-base
* ⏪ Revert "Enable `consistent-type-imports` for nodes-base"
This reverts commit 529ad72b05
.
* 👕 Fix severity
40 lines
839 B
TypeScript
40 lines
839 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const commitFields: INodeProperties[] = [
|
|
{
|
|
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',
|
|
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.',
|
|
},
|
|
],
|
|
},
|
|
];
|