create_tag
Generate a new tag in a GitHub repository by specifying the owner, repo, ref, and SHA. Streamlines version control and tracking for developers.
Instructions
Create a new tag in a GitHub repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Repository owner (username or organization) | |
ref | Yes | The name of the fully qualified reference (e.g., refs/tags/v1.0.0) | |
repo | Yes | Repository name | |
sha | Yes | The SHA1 value to set this reference to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"ref": {
"description": "The name of the fully qualified reference (e.g., refs/tags/v1.0.0)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"sha": {
"description": "The SHA1 value to set this reference to",
"type": "string"
}
},
"required": [
"owner",
"repo",
"ref",
"sha"
],
"type": "object"
}