Skip to content

Commit 3237a2e

Browse files
Merge pull request moby#5198 from crazy-max/fix-labeler
2 parents d75ba52 + b31dac7 commit 3237a2e

File tree

1 file changed

+48
-46
lines changed

1 file changed

+48
-46
lines changed

.github/labeler.yml

Lines changed: 48 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -3,153 +3,155 @@ 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+
- all-globs-to-all-files: '!.github/workflows/*'
1515

1616
# Add 'ci' label to changes in the .github/workflows folder
1717
area/ci:
1818
- changed-files:
19-
- any-glob-to-any-file: ".github/workflows/**"
19+
- any-glob-to-any-file: '.github/workflows/**'
2020

2121
# Add 'tests' label to changes in test files
2222
area/testing:
2323
- changed-files:
2424
- any-glob-to-any-file:
25-
- tests/**
26-
- "**/*_test.go"
25+
- 'tests/**'
26+
- '**/*_test.go'
2727

2828
# area:api
2929
area/api:
3030
- changed-files:
31-
- any-glob-to-any-file: "api/**"
31+
- any-glob-to-any-file: 'api/**'
3232

3333
# area:storage
3434
area/storage:
35-
- changed-files:
36-
- any-glob-to-any-file:
37-
- "cache/**"
38-
- "snapshot/**"
39-
- all-globs-to-all-files: "!cache/remotecache/**"
35+
- all:
36+
- changed-files:
37+
- any-glob-to-any-file:
38+
- 'cache/**'
39+
- 'snapshot/**'
40+
- all-globs-to-all-files: '!cache/remotecache/**'
4041

4142
# area:remotecache
4243
area/remotecache:
4344
- changed-files:
44-
- any-glob-to-any-file: "cache/remotecache/**"
45+
- any-glob-to-any-file: 'cache/remotecache/**'
4546

4647
# area:client
4748
area/client:
4849
- changed-files:
49-
- any-glob-to-any-file: "client/**"
50+
- any-glob-to-any-file: 'client/**'
5051

5152
# area:llb
5253
area/llb:
5354
- changed-files:
54-
- any-glob-to-any-file: "client/llb/**"
55+
- any-glob-to-any-file: 'client/llb/**'
5556

5657
# area:buildctl
5758
area/buildctl:
5859
- changed-files:
59-
- any-glob-to-any-file: "cmd/buildctl/**"
60+
- any-glob-to-any-file: 'cmd/buildctl/**'
6061

6162
# area:buildkitd
6263
area/buildkitd:
6364
- changed-files:
64-
- any-glob-to-any-file: "cmd/buildkitd/**"
65+
- any-glob-to-any-file: 'cmd/buildkitd/**'
6566

6667
# area:dependencies
6768
area/dependencies:
6869
- changed-files:
6970
- any-glob-to-any-file:
70-
- go.mod
71-
- go.sum
72-
- vendor/**
73-
- tools/**
71+
- 'go.mod'
72+
- 'go.sum'
73+
- 'vendor/**'
74+
- 'tools/**'
7475

7576
# area:docs
7677
area/docs:
7778
- changed-files:
7879
- any-glob-to-any-file:
79-
- "docs/**"
80-
- "frontend/dockerfile/docs/**"
80+
- 'docs/**'
81+
- 'frontend/dockerfile/docs/**'
8182

8283
# area:dockerfile
8384
area/dockerfile:
8485
- changed-files:
85-
- any-glob-to-any-file: "frontend/dockerfile/**"
86+
- any-glob-to-any-file: 'frontend/dockerfile/**'
8687

8788
# area:dockerfile/checks
8889
area/dockerfile/checks:
8990
- changed-files:
9091
- any-glob-to-any-file:
91-
- "frontend/dockerfile/linter"
92-
- "frontend/dockerfile/subrequests/lint"
92+
- 'frontend/dockerfile/linter'
93+
- 'frontend/dockerfile/subrequests/lint'
9394

9495
# area:examples
9596
area/examples:
9697
- changed-files:
97-
- any-glob-to-any-file: "examples/**"
98+
- any-glob-to-any-file: 'examples/**'
9899

99100
# area:executor
100101
area/executor:
101102
- changed-files:
102-
- any-glob-to-any-file: "executor/**"
103+
- any-glob-to-any-file: 'executor/**'
103104

104105
# area:exporter
105106
area/exporter:
106107
- changed-files:
107-
- any-glob-to-any-file: "exporter/**"
108+
- any-glob-to-any-file: 'exporter/**'
108109

109110
# area:frontend
110111
area/frontend:
111112
- changed-files:
112-
- any-glob-to-any-file: "frontend/**"
113+
- any-glob-to-any-file: 'frontend/**'
113114

114115
# area:hack
115116
area/hack:
116117
- changed-files:
117-
- any-glob-to-any-file: "hack/**"
118+
- any-glob-to-any-file:
119+
- 'hack/**'
120+
- 'frontend/dockerfile/cmd/dockerfile-frontend/hack/**'
118121

119122
# area:session
120123
area/session:
121124
- changed-files:
122-
- any-glob-to-any-file: "session/**"
125+
- any-glob-to-any-file: 'session/**'
123126

124127
# area:solver
125128
area/solver:
126129
- changed-files:
127130
- any-glob-to-any-file:
128-
- "control/**"
129-
- "solver/**"
131+
- 'control/**'
132+
- 'solver/**'
130133

131134
# area:source
132135
area/source:
133136
- changed-files:
134-
- any-glob-to-any-file: "source/**"
137+
- any-glob-to-any-file: 'source/**'
135138

136139
# area:sourcepolicy
137140
area/sourcepolicy:
138141
- changed-files:
139-
- any-glob-to-any-file: "sourcepolicy/**"
142+
- any-glob-to-any-file: 'sourcepolicy/**'
140143

141144
# area:util
142145
area/util:
143146
- changed-files:
144-
- any-glob-to-any-file: "util/**"
147+
- any-glob-to-any-file: 'util/**'
145148

146149
# area:worker
147150
area/worker:
148151
- changed-files:
149-
- any-glob-to-any-file: "worker/**"
152+
- any-glob-to-any-file: 'worker/**'
150153

151154
# area:windows
152155
area/windows:
153156
- changed-files:
154-
- any-glob-to-any-file:
155-
- "**/*_windows.go"
157+
- any-glob-to-any-file: '**/*_windows.go'

0 commit comments

Comments
 (0)