mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08: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:
parent
4a800a6110
commit
b1ee1efcb1
|
@ -17,14 +17,14 @@ import {
|
|||
|
||||
export class Github implements INodeType {
|
||||
description: INodeTypeDescription = {
|
||||
displayName: 'Github',
|
||||
displayName: 'GitHub',
|
||||
name: 'github',
|
||||
icon: 'file:github.png',
|
||||
group: ['input'],
|
||||
version: 1,
|
||||
description: 'Retrieve data from Github API.',
|
||||
description: 'Retrieve data from GitHub API.',
|
||||
defaults: {
|
||||
name: 'Github',
|
||||
name: 'GitHub',
|
||||
color: '#665533',
|
||||
},
|
||||
inputs: ['main'],
|
||||
|
@ -178,7 +178,7 @@ export class Github implements INodeType {
|
|||
{
|
||||
name: 'Get',
|
||||
value: 'get',
|
||||
description: 'Get the data of a single issues',
|
||||
description: 'Get the data of a single issue',
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
|
@ -220,7 +220,7 @@ export class Github implements INodeType {
|
|||
{
|
||||
name: 'List Popular Paths',
|
||||
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',
|
||||
|
@ -458,7 +458,7 @@ export class Github implements INodeType {
|
|||
description: 'The name of the author of the commit.',
|
||||
},
|
||||
{
|
||||
displayName: 'EMail',
|
||||
displayName: 'Email',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -491,7 +491,7 @@ export class Github implements INodeType {
|
|||
description: 'The name of the committer of the commit.',
|
||||
},
|
||||
{
|
||||
displayName: 'EMail',
|
||||
displayName: 'Email',
|
||||
name: 'email',
|
||||
type: 'string',
|
||||
default: '',
|
||||
|
@ -1014,28 +1014,28 @@ export class Github implements INodeType {
|
|||
name: 'assignee',
|
||||
type: 'string',
|
||||
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',
|
||||
name: 'creator',
|
||||
type: 'string',
|
||||
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',
|
||||
name: 'mentioned',
|
||||
type: 'string',
|
||||
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',
|
||||
name: 'labels',
|
||||
type: 'string',
|
||||
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',
|
||||
|
|
Loading…
Reference in a new issue