Skip to content

Commit 148c80b

Browse files
authored
Merge pull request moby#5230 from thompson-shaun/labeler-add-area-project
expand globs for area/project in auto PR labeler
2 parents 27efea4 + aa65dfa commit 148c80b

File tree

1 file changed

+48
-44
lines changed

1 file changed

+48
-44
lines changed

.github/labeler.yml

Lines changed: 48 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -3,155 +3,159 @@ area/project:
33
- all:
44
- changed-files:
55
- any-glob-to-any-file:
6-
- '.github/**'
7-
- 'LICENSE'
8-
- 'AUTHORS'
9-
- 'MAINTAINERS'
10-
- 'PROJECT.md'
11-
- 'README.md'
12-
- '.gitignore'
13-
- 'codecov.yml'
14-
- all-globs-to-all-files: '!.github/workflows/*'
6+
- ".github/**"
7+
- "LICENSE"
8+
- "AUTHORS"
9+
- "MAINTAINERS"
10+
- "PROJECT.md"
11+
- "README.md"
12+
- ".gitignore"
13+
- "codecov.yml"
14+
- ".dockerignore"
15+
- "docker-bake.hcl"
16+
- "Dockerfile"
17+
- "Makefile"
18+
- all-globs-to-all-files: "!.github/workflows/*"
1519

1620
# Add 'ci' label to changes in the .github/workflows folder
1721
area/ci:
1822
- changed-files:
19-
- any-glob-to-any-file: '.github/workflows/**'
23+
- any-glob-to-any-file: ".github/workflows/**"
2024

2125
# Add 'tests' label to changes in test files
2226
area/testing:
2327
- changed-files:
2428
- any-glob-to-any-file:
25-
- 'tests/**'
26-
- '**/*_test.go'
29+
- "tests/**"
30+
- "**/*_test.go"
2731

2832
# area:api
2933
area/api:
3034
- changed-files:
31-
- any-glob-to-any-file: 'api/**'
35+
- any-glob-to-any-file: "api/**"
3236

3337
# area:storage
3438
area/storage:
3539
- all:
3640
- changed-files:
3741
- any-glob-to-any-file:
38-
- 'cache/**'
39-
- 'snapshot/**'
40-
- all-globs-to-all-files: '!cache/remotecache/**'
42+
- "cache/**"
43+
- "snapshot/**"
44+
- all-globs-to-all-files: "!cache/remotecache/**"
4145

4246
# area:remotecache
4347
area/remotecache:
4448
- changed-files:
45-
- any-glob-to-any-file: 'cache/remotecache/**'
49+
- any-glob-to-any-file: "cache/remotecache/**"
4650

4751
# area:client
4852
area/client:
4953
- changed-files:
50-
- any-glob-to-any-file: 'client/**'
54+
- any-glob-to-any-file: "client/**"
5155

5256
# area:llb
5357
area/llb:
5458
- changed-files:
55-
- any-glob-to-any-file: 'client/llb/**'
59+
- any-glob-to-any-file: "client/llb/**"
5660

5761
# area:buildctl
5862
area/buildctl:
5963
- changed-files:
60-
- any-glob-to-any-file: 'cmd/buildctl/**'
64+
- any-glob-to-any-file: "cmd/buildctl/**"
6165

6266
# area:buildkitd
6367
area/buildkitd:
6468
- changed-files:
65-
- any-glob-to-any-file: 'cmd/buildkitd/**'
69+
- any-glob-to-any-file: "cmd/buildkitd/**"
6670

6771
# area:dependencies
6872
area/dependencies:
6973
- changed-files:
7074
- any-glob-to-any-file:
71-
- 'go.mod'
72-
- 'go.sum'
73-
- 'vendor/**'
74-
- 'tools/**'
75+
- "go.mod"
76+
- "go.sum"
77+
- "vendor/**"
78+
- "tools/**"
7579

7680
# area:docs
7781
area/docs:
7882
- changed-files:
7983
- any-glob-to-any-file:
80-
- 'docs/**'
81-
- 'frontend/dockerfile/docs/**'
84+
- "docs/**"
85+
- "frontend/dockerfile/docs/**"
8286

8387
# area:dockerfile
8488
area/dockerfile:
8589
- changed-files:
86-
- any-glob-to-any-file: 'frontend/dockerfile/**'
90+
- any-glob-to-any-file: "frontend/dockerfile/**"
8791

8892
# area:dockerfile/checks
8993
area/dockerfile/checks:
9094
- changed-files:
9195
- any-glob-to-any-file:
92-
- 'frontend/dockerfile/linter'
93-
- 'frontend/dockerfile/subrequests/lint'
96+
- "frontend/dockerfile/linter"
97+
- "frontend/dockerfile/subrequests/lint"
9498

9599
# area:examples
96100
area/examples:
97101
- changed-files:
98-
- any-glob-to-any-file: 'examples/**'
102+
- any-glob-to-any-file: "examples/**"
99103

100104
# area:executor
101105
area/executor:
102106
- changed-files:
103-
- any-glob-to-any-file: 'executor/**'
107+
- any-glob-to-any-file: "executor/**"
104108

105109
# area:exporter
106110
area/exporter:
107111
- changed-files:
108-
- any-glob-to-any-file: 'exporter/**'
112+
- any-glob-to-any-file: "exporter/**"
109113

110114
# area:frontend
111115
area/frontend:
112116
- changed-files:
113-
- any-glob-to-any-file: 'frontend/**'
117+
- any-glob-to-any-file: "frontend/**"
114118

115119
# area:hack
116120
area/hack:
117121
- changed-files:
118122
- any-glob-to-any-file:
119-
- 'hack/**'
120-
- 'frontend/dockerfile/cmd/dockerfile-frontend/hack/**'
123+
- "hack/**"
124+
- "frontend/dockerfile/cmd/dockerfile-frontend/hack/**"
121125

122126
# area:session
123127
area/session:
124128
- changed-files:
125-
- any-glob-to-any-file: 'session/**'
129+
- any-glob-to-any-file: "session/**"
126130

127131
# area:solver
128132
area/solver:
129133
- changed-files:
130134
- any-glob-to-any-file:
131-
- 'control/**'
132-
- 'solver/**'
135+
- "control/**"
136+
- "solver/**"
133137

134138
# area:source
135139
area/source:
136140
- changed-files:
137-
- any-glob-to-any-file: 'source/**'
141+
- any-glob-to-any-file: "source/**"
138142

139143
# area:sourcepolicy
140144
area/sourcepolicy:
141145
- changed-files:
142-
- any-glob-to-any-file: 'sourcepolicy/**'
146+
- any-glob-to-any-file: "sourcepolicy/**"
143147

144148
# area:util
145149
area/util:
146150
- changed-files:
147-
- any-glob-to-any-file: 'util/**'
151+
- any-glob-to-any-file: "util/**"
148152

149153
# area:worker
150154
area/worker:
151155
- changed-files:
152-
- any-glob-to-any-file: 'worker/**'
156+
- any-glob-to-any-file: "worker/**"
153157

154158
# area:windows
155159
area/windows:
156160
- changed-files:
157-
- any-glob-to-any-file: '**/*_windows.go'
161+
- any-glob-to-any-file: "**/*_windows.go"

0 commit comments

Comments
 (0)