diff options
author | silverwind <me@silverwind.io> | 2023-09-10 21:54:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-10 19:54:20 +0000 |
commit | 3442ea62cdbf1eeda4f7d4da5055756f8168b575 (patch) | |
tree | 21d48803cbfb7eadf4552fda6a1c109309493aff /.github/labeler.yml | |
parent | e7745c94f8ca78d4c7892968ca1a1b00326a7bbd (diff) | |
download | gitea-3442ea62cdbf1eeda4f7d4da5055756f8168b575.tar.gz gitea-3442ea62cdbf1eeda4f7d4da5055756f8168b575.zip |
Add some more labels to labeler (#26987)
- Add more automatic labels
- Consistently use `**` glob for recursive directory globs.
---------
Co-authored-by: techknowlogick <techknowlogick@gitea.com>
Diffstat (limited to '.github/labeler.yml')
-rw-r--r-- | .github/labeler.yml | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml index 4b4fc91e39..ee6c7d6ae8 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,13 +1,14 @@ kind/docs: - "**/*.md" - - "docs/**/*" + - "docs/**" kind/ui: - "web_src/**/*" - - all: ["templates/**/*", "!templates/swagger/v1_json.tmpl"] + - all: ["templates/**", "!templates/swagger/v1_json.tmpl"] kind/api: - "templates/swagger/v1_json.tmpl" + - "routers/api/**" kind/build: - "Makefile" @@ -16,6 +17,12 @@ kind/build: - "docker/**" - "webpack.config.js" +theme/package-registry: + - "modules/packages/**" + +kind/cli: + - "cmd/**" + kind/lint: - ".eslintrc.yaml" - ".golangci.yml" |