devops work-item update

Update a work item in DevOps Center.

Description for devops work-item update 

Update the subject, description, or status of a work item. At least one of –subject, –description, or –status must be provided.

Flags 

Flag Name (Long)Flag Name (Short)Description
‑‑api‑versionN/AType: Value

Override the api version used for api requests made by this command
‑‑descriptionN/AType: Value

New description for the work item.
‑‑flags‑dirN/AType: Value

Import flag values from a directory.
‑‑jsonN/AType: Boolean

Format output as json.
‑‑statusN/AType: Value
Valid Values: In Progress, Ready to Promote

New status for the work item. Allowed values: “In Progress”, “Ready to Promote”.
‑‑subjectN/AType: Value

New subject for the work item.
‑‑target‑org‑oType: Value
Required

Username or alias of the target org. Not required if the target-org configuration variable is already set.
‑‑work‑item‑id‑wType: Value

ID of the work item.
‑‑work‑item‑name‑nType: Value

Name of the work item, such as WI-000001.

Examples for devops work-item update 

Update the subject of a work item by name:

1sf devops work-item update --target-org my-devops-org --work-item-name WI-000001 --subject "Fix login bug"

Update the status of a work item by ID:

1sf devops work-item update --target-org my-devops-org --work-item-id 0Wx000000000001 --status "In Progress"

Update multiple fields at once:

1sf devops work-item update --target-org my-devops-org --work-item-name WI-000001 --subject "Fix login bug" --description "Users can't log in on mobile" --status "In Progress"