Skip to content

GitLab

GitLab is a web-based DevOps lifecycle tool that provides a Git repository manager, CI/CD pipelines, issue tracking, and more in a single application.

Categories: developer-tools

Type: gitlab/v1


Connections

Version: 1

OAuth2 Authorization Code

Properties

NameLabelTypeDescriptionRequired
clientIdClient IdSTRINGtrue
clientSecretClient SecretSTRINGtrue

Actions

Create Issue

Name: createIssue

Creates a new project issue.

Properties

NameLabelTypeDescriptionRequired
projectIdProject IDSTRINGID of the project where new issue will be created.true
titleTitleSTRINGThe title of an issue.true
descriptionDescriptionSTRINGThe description of an issue.false

Example JSON Structure

{
"label" : "Create Issue",
"name" : "createIssue",
"parameters" : {
"projectId" : "",
"title" : "",
"description" : ""
},
"type" : "gitlab/v1/createIssue"
}

Output

Type: OBJECT

Properties

NameTypeDescription
idINTEGERThe ID of the issue.
iidINTEGERThe internal ID of the issue.
project_idINTEGERThe ID of the project.
titleSTRINGThe title of the issue.
descriptionSTRINGThe description of the issue.
web_urlSTRINGThe URL of the issue.

Output Example

{
"id" : 1,
"iid" : 1,
"project_id" : 1,
"title" : "",
"description" : "",
"web_url" : ""
}

Create Comment on Issue

Name: createCommentOnIssue

Adds a comment to the specified issue.

Properties

NameLabelTypeDescriptionRequired
projectIdProject IDSTRINGtrue
issueIdIssue IDINTEGER
Depends On projectId
ID of the issue to comment on.true
bodyCommentSTRINGThe comment to add to the issue.true

Example JSON Structure

{
"label" : "Create Comment on Issue",
"name" : "createCommentOnIssue",
"parameters" : {
"projectId" : "",
"issueId" : 1,
"body" : ""
},
"type" : "gitlab/v1/createCommentOnIssue"
}

Output

Type: OBJECT

Properties

NameTypeDescription
idINTEGERThe ID of the comment.
bodySTRINGThe body of the comment.

Output Example

{
"id" : 1,
"body" : ""
}

Triggers

New Issue

Name: newIssue

Triggers when a new issue is created.

Type: DYNAMIC_WEBHOOK

Properties

NameLabelTypeDescriptionRequired
projectIdProjectSTRINGtrue

Output

Type: OBJECT

Properties

NameTypeDescription
descriptionSTRINGThe description of the issue.
idINTEGERThe ID of the issue.
iidINTEGERThe internal ID of the issue.
projectIdINTEGERThe ID of the project.
titleSTRINGThe title of the issue.

JSON Example

{
"label" : "New Issue",
"name" : "newIssue",
"parameters" : {
"projectId" : ""
},
"type" : "gitlab/v1/newIssue"
}