Skip to main content

이 버전의 GitHub Enterprise Server는 다음 날짜에 중단됩니다. 2026-08-25. 지원되지 않는 릴리스는 지원되지 않습니다. 중요한 보안 문제에 대해서도 패치 릴리스가 이루어지지 않습니다. GitHub Enterprise Server의 향상된 성능, 향상된 보안 및 새로운 기능은 업그레이드 프로세스의 오버뷰 참조하세요. 업그레이드에 대한 도움이 필요하면 GitHub Enterprise 지원에 문의하세요.

레이블 관리

레이블을 생성, 편집, 적용 및 삭제하여 이슈 및 풀 리퀘스트를 분류할 수 있습니다.

About labels

You can manage your work on GitHub by creating labels to categorize issues and pull requests. You can apply labels in the repository the label was created in. Once a label exists, you can use the label on any issue or pull request within that repository. Addition, modification, or deletion of labels in one repository has no effect on labels belonging to other repositories.

About default labels

GitHub provides default labels in every new repository. You can use these default labels to help create a standard workflow in a repository.

LabelDescription
bugIndicates an unexpected problem or unintended behavior
documentationIndicates a need for improvements or additions to documentation
duplicateIndicates similar issues or pull requests
enhancementIndicates new feature requests
good first issueIndicates a good issue for first-time contributors
help wantedIndicates that a maintainer wants help on an issue or pull request
invalidIndicates that an issue or pull request is no longer relevant
questionIndicates that an issue or pull request needs more information
wontfixIndicates that work won't continue on an issue or pull request

Default labels are included in every new repository when the repository is created, but you can edit or delete the labels later.

Issues with the good first issue label are used to populate the repository's contribute page. For an example of a contribute page, see github/docs/contribute.

Organization owners can customize the default labels for repositories in their organization. For more information, see Managing default labels for repositories in your organization.

Creating a label

Anyone with write access to a repository can create a label.

  1. On GitHub, navigate to the main page of the repository.

  2. Under your repository name, click Issues or Pull requests.

    Screenshot of the main page of a repository. In the horizontal navigation bar, the "Issues" and "Pull requests" tabs are outlined in orange.

  3. Above the list of issues or pull requests, click Labels.

    Screenshot of the list of issues for a repository. Above the list, a button, labeled with a label icon and "Labels", is outlined in dark orange.

  4. To the right of the search field, click New label.

  5. Under "Label name", type a name for your label.

  6. Under "Description", type a description to help others understand and use your label.

  7. Optionally, to customize the color of your label, edit the hexadecimal number, or, for another random selection, click .

  8. To save the new label, click Create label.

Applying a label

Anyone with triage access to a repository can apply and dismiss labels.

  1. Navigate to the issue or pull request.
  2. In the right sidebar, click Labels, then click a label.

Editing a label

Anyone with write access to a repository can edit existing labels.

  1. On GitHub, navigate to the main page of the repository.

  2. Under your repository name, click Issues or Pull requests.

    Screenshot of the main page of a repository. In the horizontal navigation bar, the "Issues" and "Pull requests" tabs are outlined in orange.

  3. Above the list of issues or pull requests, click Labels.

    Screenshot of the list of issues for a repository. Above the list, a button, labeled with a label icon and "Labels", is outlined in dark orange.

  4. In the labels list, to the right of the label you want to edit, click Edit.

  5. Under "Label name", type a name for your label.

  6. Under "Description", type a description to help others understand and use your label.

  7. Optionally, to customize the color of your label, edit the hexadecimal number, or, for another random selection, click .

  8. Click Save changes.

Deleting a label

Anyone with write access to a repository can delete existing labels.

Deleting a label will remove the label from issues and pull requests.

  1. On GitHub, navigate to the main page of the repository.

  2. Under your repository name, click Issues or Pull requests.

    Screenshot of the main page of a repository. In the horizontal navigation bar, the "Issues" and "Pull requests" tabs are outlined in orange.

  3. Above the list of issues or pull requests, click Labels.

    Screenshot of the list of issues for a repository. Above the list, a button, labeled with a label icon and "Labels", is outlined in dark orange.

  4. In the labels list, to the right of the label you want to delete, click Delete.

Further reading