add_project_item
Add issues or pull requests to a GitHub project using project ID, content ID, and content type. Simplify project management by integrating directly with GitHub Projects V2.
Instructions
Add an item to a GitHub project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contentId | Yes | ||
contentType | Yes | ||
projectId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"contentId": {
"type": "string"
},
"contentType": {
"enum": [
"issue",
"pull_request"
]
},
"projectId": {
"type": "string"
}
},
"required": [
"projectId",
"contentId",
"contentType"
],
"type": "object"
}