mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions` * 👕 Apply `node-param-operation-option-without-action` * ✏️ Fix add/remove phrasing * ✏️ Fix email template phrasing * ✏️ Fix add/remove phrasing * ✏️ Fix custom fields phrasing * ✏️ Fix job report phrasing * ✏️ Fix query phrasing * ✏️ Various phrasing fixes * ✏️ Fix final phrasings * ✏️ Remove `conversation` * ✏️ Fix plural
This commit is contained in:
@@ -92,66 +92,79 @@ export class Git implements INodeType {
|
||||
name: 'Add',
|
||||
value: 'add',
|
||||
description: 'Add a file or folder to commit',
|
||||
action: 'Add a file or folder to commit',
|
||||
},
|
||||
{
|
||||
name: 'Add Config',
|
||||
value: 'addConfig',
|
||||
description: 'Add configuration property',
|
||||
action: 'Add configuration property',
|
||||
},
|
||||
{
|
||||
name: 'Clone',
|
||||
value: 'clone',
|
||||
description: 'Clone a repository',
|
||||
action: 'Clone a repository',
|
||||
},
|
||||
{
|
||||
name: 'Commit',
|
||||
value: 'commit',
|
||||
description: 'Commit files or folders to git',
|
||||
action: 'Commit files or folders to git',
|
||||
},
|
||||
{
|
||||
name: 'Fetch',
|
||||
value: 'fetch',
|
||||
description: 'Fetch from remote repository',
|
||||
action: 'Fetch from remote repository',
|
||||
},
|
||||
{
|
||||
name: 'List Config',
|
||||
value: 'listConfig',
|
||||
description: 'Return current configuration',
|
||||
action: 'Return current configuration',
|
||||
},
|
||||
{
|
||||
name: 'Log',
|
||||
value: 'log',
|
||||
description: 'Return git commit history',
|
||||
action: 'Return git commit history',
|
||||
},
|
||||
{
|
||||
name: 'Pull',
|
||||
value: 'pull',
|
||||
description: 'Pull from remote repository',
|
||||
action: 'Pull from remote repository',
|
||||
},
|
||||
{
|
||||
name: 'Push',
|
||||
value: 'push',
|
||||
description: 'Push to remote repository',
|
||||
action: 'Push to remote repository',
|
||||
},
|
||||
{
|
||||
name: 'Push Tags',
|
||||
value: 'pushTags',
|
||||
description: 'Push Tags to remote repository',
|
||||
action: 'Push tags to remote repository',
|
||||
},
|
||||
{
|
||||
name: 'Status',
|
||||
value: 'status',
|
||||
description: 'Return status of current repository',
|
||||
action: 'Return status of current repository',
|
||||
},
|
||||
{
|
||||
name: 'Tag',
|
||||
value: 'tag',
|
||||
description: 'Create a new tag',
|
||||
action: 'Create a new tag',
|
||||
},
|
||||
{
|
||||
name: 'User Setup',
|
||||
value: 'userSetup',
|
||||
description: 'Set the user',
|
||||
action: 'Set up a user',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user