Gitee

by normal-coder
Verified

fork_repository

Fork Gitee 仓库

Input Schema

NameRequiredDescriptionDefault
organizationNoOrganization path, defaults to personal account if not provided
ownerYesRepository owner path (enterprise, organization, or personal path)
repoYesRepository path

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "organization": { "description": "Organization path, defaults to personal account if not provided", "type": "string" }, "owner": { "description": "Repository owner path (enterprise, organization, or personal path)", "type": "string" }, "repo": { "description": "Repository path", "type": "string" } }, "required": [ "owner", "repo" ], "type": "object" }