fork_repository
Create a copy of a GitHub repository to your personal account or specified organization using owner and repo details. Enables easier collaboration and experimentation.
Instructions
Fork a GitHub repository to your account or specified organization
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organization | No | Optional: organization to fork to (defaults to your personal account) | |
owner | Yes | Repository owner (username or organization) | |
repo | Yes | Repository name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"organization": {
"description": "Optional: organization to fork to (defaults to your personal account)",
"type": "string"
},
"owner": {
"description": "Repository owner (username or organization)",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
}
},
"required": [
"owner",
"repo"
],
"type": "object"
}