create_issue
Create a new issue in a GitLab project with title, description, assignees, labels, and milestone assignment to track tasks and bugs.
Instructions
Create a new issue in a GitLab project
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or complete URL-encoded path to project | |
| title | Yes | Issue title | |
| description | No | Issue description | |
| assignee_ids | No | Array of user IDs to assign | |
| labels | No | Array of label names | |
| milestone_id | No | Milestone ID to assign |
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": "Array of label names",
"items": {
"type": "string"
},
"type": "array"
},
"milestone_id": {
"description": "Milestone ID to assign",
"type": "number"
},
"project_id": {
"description": "Project ID or complete URL-encoded path to project",
"type": "string"
},
"title": {
"description": "Issue title",
"type": "string"
}
},
"required": [
"project_id",
"title"
],
"type": "object"
}