mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ Add Git node (#1820)
* ✨ Add Git-Node * 👕 Fix lint issue * 🎨 add git icon * ⚡ Fix indentation in package.json files * ⚡ Add support for pushTags * ⚡ Add support for addConfig, fetch, listConfig and status * ⚡ Add support for clone * ⚡ Remove not needed code * ⚡ Add proper continueOnFail support & alphabetize options * 🐛 Remove console.log * ⚡ Improve Git Node * ⚡ Improve Git Node * 🐳 Add git to Docker images * ⚡ Auto create folder if not exists and clarify addConfig mode Co-authored-by: Ben Hesseldieck <b.hesseldieck@gmail.com>
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
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',
|
||||
description: `Comma separated list of paths (absolute or relative to Repository Path) of<br />
|
||||
files or folders to commit. If not set will all "added" files and folders be committed.`,
|
||||
},
|
||||
],
|
||||
},
|
||||
] as INodeProperties[];
|
||||
Reference in New Issue
Block a user