summaryrefslogtreecommitdiffstats
path: root/docs/content
diff options
context:
space:
mode:
authorJonRB <4564448+eeyrjmr@users.noreply.github.com>2023-03-06 23:39:07 +0000
committerGitHub <noreply@github.com>2023-03-07 00:39:07 +0100
commit84a299310d9a8f6387f18a1711485b7f33e6f6b5 (patch)
tree775ceb5d61527093eb3efc83822cd068d9a94637 /docs/content
parent27ba7fff6d2159a01df4af302813dceaa15c9592 (diff)
downloadgitea-84a299310d9a8f6387f18a1711485b7f33e6f6b5.tar.gz
gitea-84a299310d9a8f6387f18a1711485b7f33e6f6b5.zip
Update documentation for the new YAML label file format (#23020)
update documentation to include an overview of the yaml label template that is part of PR #22976 Signed-off-by: Jon Roadley-Battin <jon.roadleybattin@gmail.com> --------- Co-authored-by: Yarden Shoham <hrsi88@gmail.com> Co-authored-by: Lauris BH <lauris@nix.lv> Co-authored-by: John Olheiser <john.olheiser@gmail.com> Co-authored-by: delvh <dev.lh@web.de>
Diffstat (limited to 'docs/content')
-rw-r--r--docs/content/doc/advanced/customizing-gitea.en-us.md15
1 files changed, 14 insertions, 1 deletions
diff --git a/docs/content/doc/advanced/customizing-gitea.en-us.md b/docs/content/doc/advanced/customizing-gitea.en-us.md
index 18fc1b3e73..bad6342aad 100644
--- a/docs/content/doc/advanced/customizing-gitea.en-us.md
+++ b/docs/content/doc/advanced/customizing-gitea.en-us.md
@@ -282,9 +282,22 @@ To add custom .gitignore, add a file with existing [.gitignore rules](https://gi
### Labels
-To add a custom label set, add a file that follows the [label format](https://github.com/go-gitea/gitea/blob/main/options/label/Default) to `$GITEA_CUSTOM/options/label`
+Starting with Gitea 1.19, you can add a file that follows the [YAML label format](https://github.com/go-gitea/gitea/blob/main/options/label/Advanced.yaml) to `$GITEA_CUSTOM/options/label`:
+
+```yaml
+labels:
+ - name: "foo/bar" # name of the label that will appear in the dropdown
+ exclusive: true # whether to use the exclusive namespace for scoped labels. scoped delimiter is /
+ color: aabbcc # hex colour coding
+ description: Some label # long description of label intent
+ ```
+
+The [legacy file format](https://github.com/go-gitea/gitea/blob/main/options/label/Default) can still be used following the format below, however we strongly recommend using the newer YAML format instead.
+
`#hex-color label name ; label description`
+For more information, see the [labels documentation]({{< relref "doc/usage/labels.en-us.md" >}}).
+
### Licenses
To add a custom license, add a file with the license text to `$GITEA_CUSTOM/options/license`