feat(Linear Node): Add options to add a link and a comment to an issue (#13464)

This commit is contained in:
Jon
2025-06-12 16:40:58 +01:00
committed by GitHub
parent ecfb6674ef
commit a417ed3ac8
9 changed files with 1187 additions and 13 deletions

View File

@@ -12,6 +12,12 @@ export const issueOperations: INodeProperties[] = [
},
},
options: [
{
name: 'Add Link',
value: 'addLink',
description: 'Add a link to an issue',
action: 'Add a link to an issue',
},
{
name: 'Create',
value: 'create',
@@ -164,7 +170,7 @@ export const issueFields: INodeProperties[] = [
displayOptions: {
show: {
resource: ['issue'],
operation: ['get', 'delete'],
operation: ['addLink', 'get', 'delete'],
},
},
default: '',
@@ -307,4 +313,20 @@ export const issueFields: INodeProperties[] = [
},
],
},
/* -------------------------------------------------------------------------- */
/* issue:addLink */
/* -------------------------------------------------------------------------- */
{
displayName: 'Link',
name: 'link',
type: 'string',
required: true,
displayOptions: {
show: {
resource: ['issue'],
operation: ['addLink'],
},
},
default: '',
},
];