summaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2023-03-05 13:35:12 +0100
committerGitHub <noreply@github.com>2023-03-05 20:35:12 +0800
commit5d621fe9a7f27b5168db22dc38423b71037bcae0 (patch)
treea0b4f47d1cd616fbecc997b25eeca41c083fb766 /docs/content
parent390d270064f431882e2cac738d7c4fdbe9555f90 (diff)
downloadgitea-5d621fe9a7f27b5168db22dc38423b71037bcae0.tar.gz
gitea-5d621fe9a7f27b5168db22dc38423b71037bcae0.zip
Add basic documentation for labels, including scoped labels (#23304)
Part of #22974 --------- Co-authored-by: delvh <dev.lh@web.de>
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/doc/usage/labels.en-us.md42
1 files changed, 42 insertions, 0 deletions
diff --git a/docs/content/doc/usage/labels.en-us.md b/docs/content/doc/usage/labels.en-us.md
new file mode 100644
index 0000000000..bf07c074ed
--- /dev/null
+++ b/docs/content/doc/usage/labels.en-us.md
@@ -0,0 +1,42 @@
+---
+date: "2023-03-04T19:00:00+00:00"
+title: "Usage: Labels"
+slug: "labels"
+weight: 13
+toc: false
+draft: false
+menu:
+ sidebar:
+ parent: "usage"
+ name: "Labels"
+ weight: 13
+ identifier: "labels"
+---
+
+# Labels
+
+You can use labels to classify issues and pull requests and to improve your overview over them.
+
+## Creating Labels
+
+For repositories, labels can be created by going to `Issues` and clicking on `Labels`.
+
+For organizations, you can define organization-wide labels that are shared with all organization repositories, including both already-existing repositories as well as newly created ones. Organization-wide labels can be created in the organization `Settings`.
+
+Labels have a mandatory name, a mandatory color, an optional description, and must either be exclusive or not (see `Scoped labels` below).
+
+When you create a repository, you can ensure certain labels exist by using the `Issue Labels` option. This option lists a number of available label sets that are [configured globally on your instance](../customizing-gitea/#labels). Its contained labels will all be created as well while creating the repository.
+
+## Scoped Labels
+
+A scoped label is a label that contains `/` in its name (not at either end of the name). For example labels `kind/bug` and `kind/enhancement` both have scope `kind`. Such labels will display the scope with slightly darker color.
+
+The scope of a label is determined based on the **last** `/`, so for example the scope of label `scope/subscope/item` is `scope/subscope`.
+
+Scoped labels can be marked as exclusive. This ensures at most a single label with the same scope is assigned to an issue or pull request. For example, if `kind/bug` and `kind/enhancement` are marked exclusive, an issue can only be classified as a bug or an enhancement.
+
+## Filtering by Label
+
+Issue and pull request lists can be filtered by label. Selecting multiple labels shows issues and pull requests that have all selected labels assigned.
+
+By holding alt to click the label, issues and pull requests with the chosen label are excluded from the list.