Skip to main content

This version of GitHub Enterprise Server will be discontinued on 2026-08-25. Discontinued releases are not supported. No patch releases will be made, even for critical security issues. For better performance, improved security, and new features in GitHub Enterprise Server, see Overview of the upgrade process. For help with the upgrade, GitHub Enterprise Support.

Editing an issue

Learn how to make changes to an existing issue.

Who can use this feature?

Issue authors, people with write access or higher in repositories owned by an organization, and collaborators in repositories owned by a personal account can make changes to issues.

Editing an issue title

You can edit an issue's title. The change to the title is added to the issue's timeline.

  1. Navigate to the issue you want to edit.

  2. To the right of the issue title, click Edit.

    Screenshot of an issue header, the "Edit" button is highlighted with an orange outline.

  3. Type your new title.

  4. Click Save.

Editing an issue description

You can also make changes to the issue description. The edit history is available unless the author or a person with write access removes it. See Tracking changes in a comment.

  1. Navigate to the issue you want to edit.

  2. At the top right of the issue description, click .

    Screenshot of an issue description. The "Issue body actions" button is highlighted with an orange outline.

  3. In the menu, click Edit.

  4. Type your changes to the issue description.

  5. Click Save.

Editing an issue with GitHub CLI

GitHub CLI is an open source tool for using GitHub from your computer's command line. When you're working from the command line, you can use the GitHub CLI to save time and avoid switching context. To learn more about GitHub CLI, see About GitHub CLI.

Editing a single issue

To edit an issue, use the gh issue edit subcommand with the issue number or URL.

gh issue edit ISSUE-NUMBER --title "TITLE" --body "ISSUE-DESCRIPTION"

Editing multiple issues

You can pass multiple issue numbers to apply the same change to several issues at once.

gh issue edit ISSUE-NUMBER-1 ISSUE-NUMBER-2 --add-label "LABEL"

Further reading