Github Project Manager

add_project_item

Add an issue or pull request to a GitHub project

Input Schema

NameRequiredDescriptionDefault
content_idYesIssue or PR ID
content_typeYesType of content to add
project_idYesProject ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "content_id": { "description": "Issue or PR ID", "type": "number" }, "content_type": { "description": "Type of content to add", "enum": [ "Issue", "PullRequest" ], "type": "string" }, "project_id": { "description": "Project ID", "type": "number" } }, "required": [ "project_id", "content_id", "content_type" ], "type": "object" }