set_field_value
Update GitHub project item fields including text, numbers, dates, selections, iterations, milestones, assignees, and labels to manage project data.
Instructions
Set a field value for a GitHub project item. Supports all field types: TEXT, NUMBER, DATE, SINGLE_SELECT, ITERATION, MILESTONE, ASSIGNEES, LABELS
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | ||
| itemId | Yes | ||
| fieldId | Yes | ||
| value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"fieldId": {
"type": "string"
},
"itemId": {
"type": "string"
},
"projectId": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"projectId",
"itemId",
"fieldId",
"value"
],
"type": "object"
}