123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- # 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/**
- - database/sqlite/sqlite_aclk*
- - mqtt_websockets
- area/claim:
- - claim/*
- area/exporting:
- - exporting/**
- area/build:
- - build/**
- - build_external/**
- - CMakeLists.txt
- - configure.ac
- - Makefile.am
- - "**/Makefile.am"
- area/ci:
- - .github/**
- area/daemon:
- - daemon/**
- area/database:
- - database/**
- area/docs:
- - "*.md"
- - "**/*.md"
- - "**/*.mdx"
- - diagrams/**
- # -----------------collectors----------------------
- area/collectors:
- - collectors/**
- collectors/plugins.d:
- - collectors/plugins.d/**
- collectors/apps:
- - collectors/apps.plugin/**
- collectors/cgroups:
- - collectors/cgroups.plugin/**
- collectors/charts.d:
- - collectors/charts.d.plugin/**
- collectors/cups:
- - collectors/cups.plugin/**
- collectors/debugfs:
- - collectors/debugfs.plugin/**
- collectors/diskspace:
- - collectors/diskspace.plugin/**
- collectors/ebpf:
- - collectors/ebpf.plugin/**
- collectors/freebsd:
- - collectors/freebsd.plugin/**
- collectors/freeipmi:
- - collectors/freeipmi.plugin/**
- collectors/idlejitter:
- - collectors/idlejitter.plugin/**
- collectors/ioping:
- - collectors/ioping.plugin/**
- collectors/macos:
- - collectors/macos.plugin/**
- collectors/nfacct:
- - collectors/nfacct.plugin/**
- collectors/perf:
- - collectors/perf.plugin/**
- collectors/proc:
- - collectors/proc.plugin/**
- collectors/python.d:
- - collectors/python.d.plugin/**
- collectors/slabinfo:
- - collectors/slabinfo.plugin/**
- collectors/statsd:
- - collectors/statsd.plugin/**
- collectors/systemd-journal:
- - collectors/systemd-journal.plugin/**
- collectors/tc:
- - collectors/tc.plugin/**
- collectors/timex:
- - collectors/timex.plugin/**
- collectors/xenstat:
- - collectors/xenstat.plugin/**
- # ----------------/collectors----------------------
- area/health:
- - health/**
- area/metadata:
- - "**/*metadata.yaml"
- - integrations/**
- area/ml:
- - ml/**
- area/packaging:
- - contrib/**
- - packaging/**
- - system/**
- - Dockerfile*
- - netdata-installer.sh
- - netdata.spec.in
- area/registry:
- - registry/**
- area/streaming:
- - streaming/**
- area/tests:
- - tests/**
- - daemon/unit_test*
- - coverity-scan.sh
- - cppcheck.sh
- - netdata.cppcheck
- area/web:
- - web/**
|