mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
Fixed typographical errors for the GitHub node (#732)
* Updated Dropdown Descriptions to match documentation * Removed full stops and hyphens in field descriptions * Removed hyphen on description on line 267 * Fixed typographical errors for Github node
This commit is contained in:
@@ -17,14 +17,14 @@ import {
|
|||||||
|
|
||||||
export class Github implements INodeType {
|
export class Github implements INodeType {
|
||||||
description: INodeTypeDescription = {
|
description: INodeTypeDescription = {
|
||||||
displayName: 'Github',
|
displayName: 'GitHub',
|
||||||
name: 'github',
|
name: 'github',
|
||||||
icon: 'file:github.png',
|
icon: 'file:github.png',
|
||||||
group: ['input'],
|
group: ['input'],
|
||||||
version: 1,
|
version: 1,
|
||||||
description: 'Retrieve data from Github API.',
|
description: 'Retrieve data from GitHub API.',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Github',
|
name: 'GitHub',
|
||||||
color: '#665533',
|
color: '#665533',
|
||||||
},
|
},
|
||||||
inputs: ['main'],
|
inputs: ['main'],
|
||||||
@@ -178,7 +178,7 @@ export class Github implements INodeType {
|
|||||||
{
|
{
|
||||||
name: 'Get',
|
name: 'Get',
|
||||||
value: 'get',
|
value: 'get',
|
||||||
description: 'Get the data of a single issues',
|
description: 'Get the data of a single issue',
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
default: 'create',
|
default: 'create',
|
||||||
@@ -220,7 +220,7 @@ export class Github implements INodeType {
|
|||||||
{
|
{
|
||||||
name: 'List Popular Paths',
|
name: 'List Popular Paths',
|
||||||
value: 'listPopularPaths',
|
value: 'listPopularPaths',
|
||||||
description: 'Get the data of a file in repositoryGet the top 10 popular content paths over the last 14 days.',
|
description: 'Get the top 10 popular content paths over the last 14 days.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'List Referrers',
|
name: 'List Referrers',
|
||||||
@@ -458,7 +458,7 @@ export class Github implements INodeType {
|
|||||||
description: 'The name of the author of the commit.',
|
description: 'The name of the author of the commit.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'EMail',
|
displayName: 'Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
@@ -491,7 +491,7 @@ export class Github implements INodeType {
|
|||||||
description: 'The name of the committer of the commit.',
|
description: 'The name of the committer of the commit.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'EMail',
|
displayName: 'Email',
|
||||||
name: 'email',
|
name: 'email',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
@@ -1014,28 +1014,28 @@ export class Github implements INodeType {
|
|||||||
name: 'assignee',
|
name: 'assignee',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Return only issuse which are assigned to a specific user.',
|
description: 'Return only issues which are assigned to a specific user.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Creator',
|
displayName: 'Creator',
|
||||||
name: 'creator',
|
name: 'creator',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Return only issuse which were created by a specific user.',
|
description: 'Return only issues which were created by a specific user.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Mentioned',
|
displayName: 'Mentioned',
|
||||||
name: 'mentioned',
|
name: 'mentioned',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Return only issuse in which a specific user was mentioned.',
|
description: 'Return only issues in which a specific user was mentioned.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Labels',
|
displayName: 'Labels',
|
||||||
name: 'labels',
|
name: 'labels',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: '',
|
default: '',
|
||||||
description: 'Return only issuse with the given labels. Multiple lables can be separated by comma.',
|
description: 'Return only issues with the given labels. Multiple lables can be separated by comma.',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Updated Since',
|
displayName: 'Updated Since',
|
||||||
|
|||||||
Reference in New Issue
Block a user