Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
85 lines
1.5 KiB
TypeScript
85 lines
1.5 KiB
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const ALLOWED_CONFIG_KEYS = ['user.email', 'user.name', 'remote.origin.url'];
|
|
|
|
export const addConfigFields: INodeProperties[] = [
|
|
{
|
|
displayName: 'Key',
|
|
name: 'key',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['addConfig'],
|
|
'@version': [{ _cnd: { gte: 1.1 } }],
|
|
},
|
|
},
|
|
options: ALLOWED_CONFIG_KEYS.map((key) => ({
|
|
name: key,
|
|
value: key,
|
|
})),
|
|
default: '',
|
|
description: 'Name of the key to set',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Key',
|
|
name: 'key',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['addConfig'],
|
|
'@version': [{ _cnd: { lt: 1.1 } }],
|
|
},
|
|
},
|
|
default: '',
|
|
placeholder: 'user.email',
|
|
description: 'Name of the key to set',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['addConfig'],
|
|
},
|
|
},
|
|
default: '',
|
|
placeholder: 'name@example.com',
|
|
description: 'Value of the key to set',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Options',
|
|
name: 'options',
|
|
type: 'collection',
|
|
displayOptions: {
|
|
show: {
|
|
operation: ['addConfig'],
|
|
},
|
|
},
|
|
placeholder: 'Add option',
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Mode',
|
|
name: 'mode',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Append',
|
|
value: 'append',
|
|
},
|
|
{
|
|
name: 'Set',
|
|
value: 'set',
|
|
},
|
|
],
|
|
default: 'set',
|
|
description: 'Append setting rather than set it in the local config',
|
|
},
|
|
],
|
|
},
|
|
];
|