create_issue
Create a new issue in a GitLab project by specifying project ID, title, description, labels, assignees, and milestone to track tasks and bugs.
Instructions
Create a new issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee_ids | No | Array of user IDs to assign | |
description | No | Issue description | |
labels | No | Comma-separated list of labels | |
milestone_id | No | Milestone ID | |
project_id | Yes | Project ID or path | |
title | Yes | Issue title |
Input Schema (JSON Schema)
{
"properties": {
"assignee_ids": {
"description": "Array of user IDs to assign",
"items": {
"type": "number"
},
"type": "array"
},
"description": {
"description": "Issue description",
"type": "string"
},
"labels": {
"description": "Comma-separated list of labels",
"type": "string"
},
"milestone_id": {
"description": "Milestone ID",
"type": "number"
},
"project_id": {
"description": "Project ID or path",
"type": "string"
},
"title": {
"description": "Issue title",
"type": "string"
}
},
"required": [
"project_id",
"title"
],
"type": "object"
}