123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- # 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.
- area/ACLK:
- - aclk/*
- - aclk/**/*
- - database/sqlite/sqlite_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:
- - .github/*
- - .github/**/*
- area/daemon:
- - daemon/*
- - daemon/**/*
- area/database:
- - database/*
- - database/**/*
- area/docs:
- - "*.md"
- - "**/*.md"
- - "**/*.mdx"
- - diagrams/*
- - diagrams/**/*
- # -----------------collectors----------------------
- area/collectors:
- - collectors/*
- - collectors/**/*
- collectors/plugins.d:
- - collectors/plugins.d/*
- - collectors/plugins.d/**/*
- collectors/apps:
- - collectors/apps.plugin/*
- - collectors/apps.plugin/**/*
- collectors/cgroups:
- - collectors/cgroups.plugin/*
- - collectors/cgroups.plugin/**/*
- collectors/charts.d:
- - collectors/charts.d.plugin/*
- - collectors/charts.d.plugin/**/*
- collectors/cups:
- - collectors/cups.plugin/*
- - collectors/cups.plugin/**/*
- collectors/debugfs:
- - collectors/debugfs.plugin/*
- - collectors/debugfs.plugin/**/*
- collectors/diskspace:
- - collectors/diskspace.plugin/*
- - collectors/diskspace.plugin/**/*
- collectors/ebpf:
- - collectors/ebpf.plugin/*
- - collectors/ebpf.plugin/**/*
- collectors/freebsd:
- - collectors/freebsd.plugin/*
- - collectors/freebsd.plugin/**/*
- collectors/freeipmi:
- - collectors/freeipmi.plugin/*
- - collectors/freeipmi.plugin/**/*
- collectors/idlejitter:
- - collectors/idlejitter.plugin/*
- - collectors/idlejitter.plugin/**/*
- collectors/ioping:
- - collectors/ioping.plugin/*
- - collectors/ioping.plugin/**/*
- collectors/macos:
- - collectors/macos.plugin/*
- - collectors/macos.plugin/**/*
- collectors/nfacct:
- - collectors/nfacct.plugin/*
- - collectors/nfacct.plugin/**/*
- collectors/perf:
- - collectors/perf.plugin/*
- - collectors/perf.plugin/**/*
- collectors/proc:
- - collectors/proc.plugin/*
- - collectors/proc.plugin/**/*
- collectors/python.d:
- - collectors/python.d.plugin/*
- - collectors/python.d.plugin/**/*
- collectors/slabinfo:
- - collectors/slabinfo.plugin/*
- - collectors/slabinfo.plugin/**/*
- collectors/statsd:
- - collectors/statsd.plugin/*
- - collectors/statsd.plugin/**/*
- collectors/tc:
- - collectors/tc.plugin/*
- - collectors/tc.plugin/**/*
- collectors/timex:
- - collectors/timex.plugin/*
- - collectors/timex.plugin/**/*
- collectors/xenstat:
- - collectors/xenstat.plugin/*
- - collectors/xenstat.plugin/**/*
- # ----------------/collectors----------------------
- 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/**/*
|