-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathlabeler.yml
163 lines (138 loc) · 3.52 KB
/
labeler.yml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# Add 'project' label to changes in basic project documentation and .github folder, excluding .github/workflows
area/project:
- all:
- changed-files:
- any-glob-to-any-file:
- ".github/**"
- "LICENSE"
- "AUTHORS"
- "MAINTAINERS"
- "PROJECT.md"
- "README.md"
- ".gitignore"
- "codecov.yml"
- ".dockerignore"
- "docker-bake.hcl"
- "Dockerfile"
- "Makefile"
- all-globs-to-all-files: "!.github/workflows/*"
# Add 'ci' label to changes in the .github/workflows folder
area/ci:
- changed-files:
- any-glob-to-any-file: ".github/workflows/**"
# Add 'tests' label to changes in test files
area/testing:
- changed-files:
- any-glob-to-any-file:
- "tests/**"
- "**/*_test.go"
# area:api
area/api:
- changed-files:
- any-glob-to-any-file: "api/**"
# area:storage
area/storage:
- all:
- changed-files:
- any-glob-to-any-file:
- "cache/**"
- "snapshot/**"
- all-globs-to-all-files: "!cache/remotecache/**"
# area:remotecache
area/remotecache:
- changed-files:
- any-glob-to-any-file: "cache/remotecache/**"
# area:client
area/client:
- changed-files:
- any-glob-to-any-file: "client/**"
# area:llb
area/llb:
- changed-files:
- any-glob-to-any-file: "client/llb/**"
# area:buildctl
area/buildctl:
- changed-files:
- any-glob-to-any-file: "cmd/buildctl/**"
# area:buildkitd
area/buildkitd:
- changed-files:
- any-glob-to-any-file: "cmd/buildkitd/**"
# area:dependencies
area/dependencies:
- changed-files:
- any-glob-to-any-file:
- "go.mod"
- "go.sum"
- "vendor/**"
- "tools/**"
# area:docs
area/docs:
- changed-files:
- any-glob-to-any-file:
- "docs/**"
- "frontend/dockerfile/docs/**"
# area:dockerfile
area/dockerfile:
- changed-files:
- any-glob-to-any-file: "frontend/dockerfile/**"
# area:dockerfile/checks
area/dockerfile/checks:
- changed-files:
- any-glob-to-any-file:
- "frontend/dockerfile/linter"
- "frontend/dockerfile/subrequests/lint"
# area:examples
area/examples:
- changed-files:
- any-glob-to-any-file: "examples/**"
# area:executor
area/executor:
- changed-files:
- any-glob-to-any-file: "executor/**"
# area:exporter
area/exporter:
- changed-files:
- any-glob-to-any-file: "exporter/**"
# area:frontend
area/frontend:
- changed-files:
- any-glob-to-any-file: "frontend/**"
# area:hack
area/hack:
- changed-files:
- any-glob-to-any-file:
- "hack/**"
- "frontend/dockerfile/cmd/dockerfile-frontend/hack/**"
# area:session
area/session:
- changed-files:
- any-glob-to-any-file: "session/**"
# area:solver
area/solver:
- changed-files:
- any-glob-to-any-file:
- "control/**"
- "solver/**"
# area:source
area/source:
- changed-files:
- any-glob-to-any-file: "source/**"
# area:sourcepolicy
area/sourcepolicy:
- changed-files:
- any-glob-to-any-file: "sourcepolicy/**"
# area:util
area/util:
- changed-files:
- any-glob-to-any-file: "util/**"
# area:worker
area/worker:
- changed-files:
- any-glob-to-any-file: "worker/**"
# area:windows
area/windows:
- all:
- changed-files:
- any-glob-to-any-file: "**/*_windows.go"
- all-globs-to-all-files: "!vendor/**/*_windows.go"