Github Project Manager

update_project_item

Move an item between columns in a GitHub project

Input Schema

NameRequiredDescriptionDefault
column_idYesColumn ID to move the card to
item_idYesCard ID to move
positionNoPosition in the column (top, bottom, or specific position)
project_idYesProject ID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "column_id": { "description": "Column ID to move the card to", "type": "number" }, "item_id": { "description": "Card ID to move", "type": "number" }, "position": { "anyOf": [ { "enum": [ "top", "bottom" ], "type": "string" }, { "type": "number" } ], "description": "Position in the column (top, bottom, or specific position)" }, "project_id": { "description": "Project ID", "type": "number" } }, "required": [ "project_id", "item_id", "column_id" ], "type": "object" }