labeler.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. area/backends:
  16. - backends/*
  17. - backends/**/*
  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/collectors:
  36. - collectors/*
  37. - collectors/**/*
  38. area/daemon:
  39. - daemon/*
  40. - daemon/**/*
  41. area/database:
  42. - database/*
  43. - database/**/*
  44. area/docs:
  45. - "**/*.md"
  46. - diagrams/*
  47. - diagrams/**/*
  48. area/external/python:
  49. - collectors/python.d.plugin/*
  50. - collectors/python.d.plugin/**/*
  51. area/external:
  52. - collectors/charts.d.plugin/*
  53. - collectors/charts.d.plugin/**/*
  54. - collectors/node.d.plugin/*
  55. - collectors/node.d.plugin/**/*
  56. area/health:
  57. - health/*
  58. - health/**/*
  59. area/packaging:
  60. - contrib/*
  61. - contrib/**/*
  62. - packaging/*
  63. - packaging/**/*
  64. - system/*
  65. - system/**/*
  66. - Dockerfile*
  67. - netdata-installer.sh
  68. - netdata.spec.in
  69. area/registry:
  70. - registry/*
  71. - registry/**/*
  72. area/streaming:
  73. - streaming/*
  74. - streaming/**/*
  75. area/tests:
  76. - tests/*
  77. - tests/**/*
  78. - daemon/unit_test*
  79. - coverity-scan.sh
  80. - cppcheck.sh
  81. - netdata.cppcheck
  82. area/web:
  83. - web/*
  84. - web/**/*