get_label_by_name
Retrieve a specific label by name from a repository on the AtomGit platform. Specify the owner, repository, and label name to fetch the desired label information.
Instructions
Get a single label by name from a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Label name | |
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": {
"name": {
"description": "Label name",
"type": "string"
},
"owner": {
"description": "Repository owner, typically referred to as 'username'. Case-insensitive.",
"type": "string"
},
"repo": {
"description": "Repository name. Case-insensitive.",
"type": "string"
}
},
"required": [
"owner",
"repo",
"name"
],
"type": "object"
}