diff --git a/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md b/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md index 4ca4fb89a818..dc301f2106cf 100644 --- a/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md +++ b/content/repositories/releasing-projects-on-github/managing-releases-in-a-repository.md @@ -79,7 +79,13 @@ If you @mention any {% data variables.product.product_name %} users in the notes {% cli %} -Releases cannot currently be edited with {% data variables.product.prodname_cli %}. +1. To edit a release, use the `gh release edit` subcommand. Replace `TAG` with the tag representing the release you wish to edit. For example, to edit the title for a release, use the following code, replacing `NEW-TITLE` with the updated title: + + ```shell + gh release edit TAG -t "NEW-TITLE" + ``` + + For more information about possible arguments, see [the {% data variables.product.prodname_cli %} manual](https://cli.github.com/manual/gh_release_edit). {% endcli %}