labeler.yml 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. - exporting/*
  19. - exporting/**/*
  20. area/build:
  21. - build/*
  22. - build/**/*
  23. - build_external/*
  24. - build_external/**/*
  25. - CMakeLists.txt
  26. - configure.ac
  27. - Makefile.am
  28. - "**/Makefile.am"
  29. area/ci:
  30. - .travis/*
  31. - .travis/**/*
  32. - .github/*
  33. - .github/**/*
  34. area/collectors:
  35. - collectors/*
  36. - collectors/**/*
  37. area/daemon:
  38. - daemon/*
  39. - daemon/**/*
  40. area/database:
  41. - database/*
  42. - database/**/*
  43. area/docs:
  44. - "**/*.md"
  45. - diagrams/*
  46. - diagrams/**/*
  47. area/external/python:
  48. - collectors/python.d.plugin/*
  49. - collectors/python.d.plugin/**/*
  50. area/external:
  51. - collectors/charts.d.plugin/*
  52. - collectors/charts.d.plugin/**/*
  53. - collectors/node.d.plugin/*
  54. - collectors/node.d.plugin/**/*
  55. area/health:
  56. - health/*
  57. - health/**/*
  58. area/packaging:
  59. - contrib/*
  60. - contrib/**/*
  61. - packaging/*
  62. - packaging/**/*
  63. - system/*
  64. - system/**/*
  65. - Dockerfile*
  66. - netdata-installer.sh
  67. - netdata.spec.in
  68. area/registry:
  69. - registry/*
  70. - registry/**/*
  71. area/streaming:
  72. - streaming/*
  73. - streaming/**/*
  74. area/tests:
  75. - tests/*
  76. - tests/**/*
  77. - daemon/unit_test*
  78. - coverity-scan.sh
  79. - cppcheck.sh
  80. - netdata.cppcheck
  81. area/web:
  82. - web/*
  83. - web/**/*