You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Restore unrelated schema and standard batch behavior, isolate Issue Field helpers, and consolidate acceptance coverage without changing supported writes.
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Copilot-Session: 1d574277-3735-4356-a753-8354aa6b537c
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1133,7 +1133,7 @@ The following sets of tools are available:
1133
1133
-`status`: The status of the project. Used for 'create_project_status_update' method. (string, optional)
1134
1134
-`target_date`: The target date of the status update in YYYY-MM-DD format. Used for 'create_project_status_update' method. (string, optional)
1135
1135
-`title`: The project title. Required for 'create_project' method. (string, optional)
1136
-
-`updated_field`: The Project or attached Issue Field to update and its new value. Required for 'update_project_item' and 'update_project_items'. For 'update_project_items', one top-level field/value applies to every item. Set value to null to clear the field. (object, optional)
1136
+
-`updated_field`: The field/value to apply, using {"id": 123, "value": ...} or {"name": "Status", "value": ...}; null clears the field. Required for 'update_project_item' and 'update_project_items', where one top-level field/value applies to every item in a batch. (object, optional)
Copy file name to clipboardExpand all lines: pkg/github/__toolsnaps__/projects_write.snap
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -186,17 +186,17 @@
186
186
"type": "string"
187
187
},
188
188
"updated_field": {
189
-
"description": "The Project or attached Issue Field to update and its new value. Required for 'update_project_item' and 'update_project_items'. For 'update_project_items', one top-level field/value applies to every item. Set value to null to clear the field.",
189
+
"description": "The field/value to apply, using {\"id\": 123, \"value\": ...} or {\"name\": \"Status\", \"value\": ...}; null clears the field. Required for 'update_project_item' and 'update_project_items', where one top-level field/value applies to every item in a batch.",
190
190
"oneOf": [
191
191
{
192
192
"additionalProperties": false,
193
193
"properties": {
194
194
"id": {
195
-
"description": "The numeric Project field ID.",
195
+
"description": "The numeric project field ID.",
196
196
"type": "integer"
197
197
},
198
198
"value": {
199
-
"description": "The field value."
199
+
"description": "The value to apply. Any JSON value is accepted; use null to clear the field."
200
200
}
201
201
},
202
202
"required": [
@@ -209,11 +209,11 @@
209
209
"additionalProperties": false,
210
210
"properties": {
211
211
"name": {
212
-
"description": "The case-insensitive Project or attached Issue Field name.",
212
+
"description": "The project field name. Matching is case-insensitive.",
213
213
"type": "string"
214
214
},
215
215
"value": {
216
-
"description": "The field value."
216
+
"description": "The value to apply. Any JSON value is accepted; use null to clear the field."
Description: "The Project or attached Issue Field to update and its new value. Required for 'update_project_item' and 'update_project_items'. For 'update_project_items', one top-level field/value applies to every item. Set value to null to clear the field.",
555
+
Description: "The field/value to apply, using {\"id\": 123, \"value\": ...} or {\"name\": \"Status\", \"value\": ...}; null clears the field. Required for 'update_project_item' and 'update_project_items', where one top-level field/value applies to every item in a batch.",
0 commit comments