move_card
Move a GitHub card to a specified position or column by providing the card ID, target position, and optional column ID for organization.
Instructions
Move a card to a different position or column
Input Schema
Name | Required | Description | Default |
---|---|---|---|
card_id | Yes | The unique identifier of the card | |
column_id | No | The column ID to move the card to | |
position | Yes | The position of the card (top, bottom, or after:<card_id>) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"card_id": {
"description": "The unique identifier of the card",
"type": "number"
},
"column_id": {
"description": "The column ID to move the card to",
"type": "number"
},
"position": {
"anyOf": [
{
"enum": [
"top",
"bottom"
],
"type": "string"
},
{
"pattern": "^after:\\d+$",
"type": "string"
}
],
"description": "The position of the card (top, bottom, or after:<card_id>)"
}
},
"required": [
"card_id",
"position"
],
"type": "object"
}