blob: 544b420c6d5df95fd4f5092476cc68a11f4c0272 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
# 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.
ACLK:
- aclk/*
- aclk/**/*
area/backends:
- backends/*
- backends/**/*
area/exporting:
- exporting/*
- exporting/**/*
area/build:
- build/*
- build/**/*
- build_external/*
- build_external/**/*
- CMakeLists.txt
- configure.ac
- Makefile.am
- "**/Makefile.am"
area/ci:
- .travis/*
- .travis/**/*
- .github/*
- .github/**/*
area/collectors:
- collectors/*
- collectors/**/*
area/daemon:
- daemon/*
- daemon/**/*
area/database:
- database/*
- database/**/*
area/docs:
- "**/*.md"
- diagrams/*
- diagrams/**/*
area/external/python:
- collectors/python.d.plugin/*
- collectors/python.d.plugin/**/*
area/external:
- collectors/charts.d.plugin/*
- collectors/charts.d.plugin/**/*
- collectors/node.d.plugin/*
- collectors/node.d.plugin/**/*
area/health:
- health/*
- health/**/*
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/**/*
|