labeler.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # This configures label matching for PR's.
  2. #
  3. # The keys are labels, and the values are lists of minimatch patterns
  4. # to which those labels apply.
  5. #
  6. # NOTE: This can only add labels, not remove them.
  7. # NOTE: Due to YAML syntax limitations, patterns or labels which start
  8. # with a character that is part of the standard YAML syntax must be
  9. # quoted.
  10. #
  11. # Please keep the labels sorted and deduplicated.
  12. ACLK:
  13. - aclk/*
  14. - aclk/**/*
  15. - mqtt_websockets
  16. area/claim:
  17. - claim/*
  18. area/exporting:
  19. - exporting/*
  20. - exporting/**/*
  21. area/build:
  22. - build/*
  23. - build/**/*
  24. - build_external/*
  25. - build_external/**/*
  26. - CMakeLists.txt
  27. - configure.ac
  28. - Makefile.am
  29. - "**/Makefile.am"
  30. area/ci:
  31. - .travis/*
  32. - .travis/**/*
  33. - .github/*
  34. - .github/**/*
  35. area/daemon:
  36. - daemon/*
  37. - daemon/**/*
  38. area/database:
  39. - database/*
  40. - database/**/*
  41. area/docs:
  42. - "**/*.md"
  43. - "**/*.mdx"
  44. - diagrams/*
  45. - diagrams/**/*
  46. area/collectors:
  47. - collectors/*
  48. - collectors/**/*
  49. area/ebpf:
  50. - collectors/ebpf.plugin/*
  51. - collectors/ebpf.plugin/**/*
  52. area/external/python:
  53. - collectors/python.d.plugin/*
  54. - collectors/python.d.plugin/**/*
  55. area/external:
  56. - collectors/charts.d.plugin/*
  57. - collectors/charts.d.plugin/**/*
  58. - collectors/node.d.plugin/*
  59. - collectors/node.d.plugin/**/*
  60. area/health:
  61. - health/*
  62. - health/**/*
  63. area/ml:
  64. - ml/*
  65. - ml/**/*
  66. area/packaging:
  67. - contrib/*
  68. - contrib/**/*
  69. - packaging/*
  70. - packaging/**/*
  71. - system/*
  72. - system/**/*
  73. - Dockerfile*
  74. - netdata-installer.sh
  75. - netdata.spec.in
  76. area/registry:
  77. - registry/*
  78. - registry/**/*
  79. area/streaming:
  80. - streaming/*
  81. - streaming/**/*
  82. area/tests:
  83. - tests/*
  84. - tests/**/*
  85. - daemon/unit_test*
  86. - coverity-scan.sh
  87. - cppcheck.sh
  88. - netdata.cppcheck
  89. area/web:
  90. - web/*
  91. - web/**/*