mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
Merge branch 'Master' into 'Pipedrive-OAuth2-support'
This commit is contained in:
@@ -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',
|
||||
@@ -244,11 +244,6 @@ export class Github implements INodeType {
|
||||
},
|
||||
},
|
||||
options: [
|
||||
{
|
||||
name: 'Get Emails',
|
||||
value: 'getEmails',
|
||||
description: 'Returns the email addresses of a user',
|
||||
},
|
||||
{
|
||||
name: 'Get Repositories',
|
||||
value: 'getRepositories',
|
||||
@@ -463,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: '',
|
||||
@@ -496,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: '',
|
||||
@@ -1019,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',
|
||||
|
||||
Reference in New Issue
Block a user