gitlab_list_issues
Retrieve and list issues from a GitLab project by specifying project ID, optional labels, and issue state (opened or closed).
Instructions
List issues in a GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
labels | No | Comma-separated list of label names | |
project_id | Yes | The ID or URL-encoded path of the project | |
state | No | Return issues with specified state (opened, closed) |
Input Schema (JSON Schema)
{
"properties": {
"labels": {
"description": "Comma-separated list of label names",
"type": "string"
},
"project_id": {
"description": "The ID or URL-encoded path of the project",
"type": "string"
},
"state": {
"description": "Return issues with specified state (opened, closed)",
"enum": [
"opened",
"closed"
],
"type": "string"
}
},
"required": [
"project_id"
],
"type": "object"
}