123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- # 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/**/*
- - mqtt_websockets
- area/claim:
- - claim/*
- 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/daemon:
- - daemon/*
- - daemon/**/*
- area/database:
- - database/*
- - database/**/*
- area/docs:
- - "**/*.md"
- - "**/*.mdx"
- - diagrams/*
- - diagrams/**/*
- area/collectors:
- - collectors/*
- - collectors/**/*
- area/ebpf:
- - collectors/ebpf.plugin/*
- - collectors/ebpf.plugin/**/*
- 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/ml:
- - ml/*
- - ml/**/*
- 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/**/*
|