glab work-items update

Update work items in a project or group. (EXPERIMENTAL)

Synopsis

The command uses your repository context to detect scope automatically.

Use --group to target a group or subgroup. --group and --repo are mutually exclusive.

This feature is an experiment and is not ready for production use. It might be unstable or removed at any time. For more information, see https://docs.gitlab.com/policy/development_stages_support/.

glab work-items update <iid> [flags]

Examples

# Update a work item in current project
glab work-items update 42 --description "this issue tracks a new feature"

# Update a work item in a group
glab work-items update 40 --group MYGROUP --description "this epic tracks a new feature"

# Read the description from a file
glab work-items update 42 --description-file description.md

# Read the description from standard input
cat description.md | glab work-items update 42 --description-file -

Options

  -a, --assignee strings          Update the work item assignee with the supplied GitLab usernames.
  -d, --description string        Update the description for the work item.
      --description-file string   Read the work item description from a file. Use "-" to read from standard input.
      --duedate string            Update the due date for the work item.
  -g, --group string              Update work items for a group or subgroup.
      --jq string                 Filter JSON output with a jq expression.
  -m, --milestone string          Update the work item milestone with the title or ID.
  -F, --output string             Format output as: text, json. (default "text")
  -R, --repo string               Select another repository. You can use either OWNER/REPO or GROUP/NAMESPACE/REPO. The full URL or Git URL is also accepted.
      --startdate string          Update the start date for the work item.
  -t, --title string              Update the title for the work item.
  -w, --weight int                Update the weight value for the work item.

Options inherited from parent commands

  -h, --help   Show help for this command.