gh project item-edit

gh project item-edit [flags]

编辑草稿问题或项目项。两种用法都需要要编辑的项目的 ID。

对于非草稿问题,还需要项目的 ID,并且每次调用只能更新单个字段值。

使用 --clear 标志删除项目项字段值。

选项

--body <string>
草稿问题项目的正文
--clear
删除字段值
--date <string>
字段的日期值 (YYYY-MM-DD)
--field-id <string>
要更新的字段的 ID
--format <string>
输出格式:{json}
--id <string>
要编辑的项目的 ID
--iteration-id <string>
要在字段上设置的迭代值的 ID
-q, --jq <expression>
使用 jq 表达式过滤 JSON 输出
--number <float32> (默认值 0)
字段的数字值
--project-id <string>
该字段所属项目的 ID
--single-select-option-id <string>
要在字段上设置的单选选项值的 ID
-t, --template <string>
使用 Go 模板格式化 JSON 输出;请参阅“gh help formatting”
--text <string>
字段的文本值
--title <string>
草稿问题项目的标题

示例

# edit an item's text field value
gh project item-edit --id <item-ID> --field-id <field-ID> --project-id <project-ID> --text "new text"

# clear an item's field value
gh project item-edit --id <item-ID> --field-id <field-ID> --project-id <project-ID> --clear

另请参阅