Components
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.
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
Name | Label | Type | Description | Required |
---|---|---|---|---|
clientId | Client Id | STRING | true | |
clientSecret | Client Secret | STRING | true |
Actions
Create Issue
Name: createIssue
Creates a new project issue.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
projectId | Project ID | STRING | ID of the project where new issue will be created. | true |
title | Title | STRING | The title of an issue. | true |
description | Description | STRING | The description of an issue. | false |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
id | INTEGER | The ID of the issue. |
iid | INTEGER | The internal ID of the issue. |
project_id | INTEGER | The ID of the project. |
title | STRING | The title of the issue. |
description | STRING | The description of the issue. |
web_url | STRING | The URL of the issue. |
Output Example
Create Comment on Issue
Name: createCommentOnIssue
Adds a comment to the specified issue.
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
projectId | Project ID | STRING | true | |
issueId | Issue ID | INTEGER Depends OnprojectId | ID of the issue to comment on. | true |
body | Comment | STRING | The comment to add to the issue. | true |
Example JSON Structure
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
id | INTEGER | The ID of the comment. |
body | STRING | The body of the comment. |
Output Example
Triggers
New Issue
Name: newIssue
Triggers when a new issue is created.
Type: DYNAMIC_WEBHOOK
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
projectId | Project | STRING | true |
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
description | STRING | The description of the issue. |
id | INTEGER | The ID of the issue. |
iid | INTEGER | The internal ID of the issue. |
projectId | INTEGER | The ID of the project. |
title | STRING | The title of the issue. |