create_issue_labels
Add predefined or custom labels to issues in a repository to organize and categorize them effectively. Specify repository details, issue number, and label names for streamlined issue management on AtomGit.
Instructions
Add labels to an issue in a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issue_number | Yes | Issue number | |
labels | Yes | Array of label names | |
owner | Yes | Repository owner, typically referred to as 'username'. Case-insensitive. | |
repo | Yes | Repository name. Case-insensitive. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issue_number": {
"description": "Issue number",
"type": "number"
},
"labels": {
"description": "Array of label names",
"items": {
"type": "string"
},
"type": "array"
},
"owner": {
"description": "Repository owner, typically referred to as 'username'. Case-insensitive.",
"type": "string"
},
"repo": {
"description": "Repository name. Case-insensitive.",
"type": "string"
}
},
"required": [
"owner",
"repo",
"issue_number",
"labels"
],
"type": "object"
}