diff options
Diffstat (limited to '.github/labeler.yml')
-rw-r--r-- | .github/labeler.yml | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/.github/labeler.yml b/.github/labeler.yml new file mode 100644 index 0000000..544b420 --- /dev/null +++ b/.github/labeler.yml @@ -0,0 +1,101 @@ +# This configures label matching for PR's. +# +# The keys are labels, and the values are lists of minimatch patterns +# to which those labels apply. +# +# NOTE: This can only add labels, not remove them. +# NOTE: Due to YAML syntax limitations, patterns or labels which start +# with a character that is part of the standard YAML syntax must be +# quoted. +# +# Please keep the labels sorted and deduplicated. + +ACLK: + - aclk/* + - aclk/**/* + +area/backends: + - backends/* + - backends/**/* + +area/exporting: + - exporting/* + - exporting/**/* + +area/build: + - build/* + - build/**/* + - build_external/* + - build_external/**/* + - CMakeLists.txt + - configure.ac + - Makefile.am + - "**/Makefile.am" + +area/ci: + - .travis/* + - .travis/**/* + - .github/* + - .github/**/* + +area/collectors: + - collectors/* + - collectors/**/* + +area/daemon: + - daemon/* + - daemon/**/* + +area/database: + - database/* + - database/**/* + +area/docs: + - "**/*.md" + - diagrams/* + - diagrams/**/* + +area/external/python: + - collectors/python.d.plugin/* + - collectors/python.d.plugin/**/* + +area/external: + - collectors/charts.d.plugin/* + - collectors/charts.d.plugin/**/* + - collectors/node.d.plugin/* + - collectors/node.d.plugin/**/* + +area/health: + - health/* + - health/**/* + +area/packaging: + - contrib/* + - contrib/**/* + - packaging/* + - packaging/**/* + - system/* + - system/**/* + - Dockerfile* + - netdata-installer.sh + - netdata.spec.in + +area/registry: + - registry/* + - registry/**/* + +area/streaming: + - streaming/* + - streaming/**/* + +area/tests: + - tests/* + - tests/**/* + - daemon/unit_test* + - coverity-scan.sh + - cppcheck.sh + - netdata.cppcheck + +area/web: + - web/* + - web/**/* |