@@ -3,155 +3,159 @@ area/project:
3
3
- all :
4
4
- changed-files :
5
5
- 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/*"
15
19
16
20
# Add 'ci' label to changes in the .github/workflows folder
17
21
area/ci :
18
22
- changed-files :
19
- - any-glob-to-any-file : ' .github/workflows/**'
23
+ - any-glob-to-any-file : " .github/workflows/**"
20
24
21
25
# Add 'tests' label to changes in test files
22
26
area/testing :
23
27
- changed-files :
24
28
- any-glob-to-any-file :
25
- - ' tests/**'
26
- - ' **/*_test.go'
29
+ - " tests/**"
30
+ - " **/*_test.go"
27
31
28
32
# area:api
29
33
area/api :
30
34
- changed-files :
31
- - any-glob-to-any-file : ' api/**'
35
+ - any-glob-to-any-file : " api/**"
32
36
33
37
# area:storage
34
38
area/storage :
35
39
- all :
36
40
- changed-files :
37
41
- 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/**"
41
45
42
46
# area:remotecache
43
47
area/remotecache :
44
48
- changed-files :
45
- - any-glob-to-any-file : ' cache/remotecache/**'
49
+ - any-glob-to-any-file : " cache/remotecache/**"
46
50
47
51
# area:client
48
52
area/client :
49
53
- changed-files :
50
- - any-glob-to-any-file : ' client/**'
54
+ - any-glob-to-any-file : " client/**"
51
55
52
56
# area:llb
53
57
area/llb :
54
58
- changed-files :
55
- - any-glob-to-any-file : ' client/llb/**'
59
+ - any-glob-to-any-file : " client/llb/**"
56
60
57
61
# area:buildctl
58
62
area/buildctl :
59
63
- changed-files :
60
- - any-glob-to-any-file : ' cmd/buildctl/**'
64
+ - any-glob-to-any-file : " cmd/buildctl/**"
61
65
62
66
# area:buildkitd
63
67
area/buildkitd :
64
68
- changed-files :
65
- - any-glob-to-any-file : ' cmd/buildkitd/**'
69
+ - any-glob-to-any-file : " cmd/buildkitd/**"
66
70
67
71
# area:dependencies
68
72
area/dependencies :
69
73
- changed-files :
70
74
- 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/**"
75
79
76
80
# area:docs
77
81
area/docs :
78
82
- changed-files :
79
83
- any-glob-to-any-file :
80
- - ' docs/**'
81
- - ' frontend/dockerfile/docs/**'
84
+ - " docs/**"
85
+ - " frontend/dockerfile/docs/**"
82
86
83
87
# area:dockerfile
84
88
area/dockerfile :
85
89
- changed-files :
86
- - any-glob-to-any-file : ' frontend/dockerfile/**'
90
+ - any-glob-to-any-file : " frontend/dockerfile/**"
87
91
88
92
# area:dockerfile/checks
89
93
area/dockerfile/checks :
90
94
- changed-files :
91
95
- any-glob-to-any-file :
92
- - ' frontend/dockerfile/linter'
93
- - ' frontend/dockerfile/subrequests/lint'
96
+ - " frontend/dockerfile/linter"
97
+ - " frontend/dockerfile/subrequests/lint"
94
98
95
99
# area:examples
96
100
area/examples :
97
101
- changed-files :
98
- - any-glob-to-any-file : ' examples/**'
102
+ - any-glob-to-any-file : " examples/**"
99
103
100
104
# area:executor
101
105
area/executor :
102
106
- changed-files :
103
- - any-glob-to-any-file : ' executor/**'
107
+ - any-glob-to-any-file : " executor/**"
104
108
105
109
# area:exporter
106
110
area/exporter :
107
111
- changed-files :
108
- - any-glob-to-any-file : ' exporter/**'
112
+ - any-glob-to-any-file : " exporter/**"
109
113
110
114
# area:frontend
111
115
area/frontend :
112
116
- changed-files :
113
- - any-glob-to-any-file : ' frontend/**'
117
+ - any-glob-to-any-file : " frontend/**"
114
118
115
119
# area:hack
116
120
area/hack :
117
121
- changed-files :
118
122
- any-glob-to-any-file :
119
- - ' hack/**'
120
- - ' frontend/dockerfile/cmd/dockerfile-frontend/hack/**'
123
+ - " hack/**"
124
+ - " frontend/dockerfile/cmd/dockerfile-frontend/hack/**"
121
125
122
126
# area:session
123
127
area/session :
124
128
- changed-files :
125
- - any-glob-to-any-file : ' session/**'
129
+ - any-glob-to-any-file : " session/**"
126
130
127
131
# area:solver
128
132
area/solver :
129
133
- changed-files :
130
134
- any-glob-to-any-file :
131
- - ' control/**'
132
- - ' solver/**'
135
+ - " control/**"
136
+ - " solver/**"
133
137
134
138
# area:source
135
139
area/source :
136
140
- changed-files :
137
- - any-glob-to-any-file : ' source/**'
141
+ - any-glob-to-any-file : " source/**"
138
142
139
143
# area:sourcepolicy
140
144
area/sourcepolicy :
141
145
- changed-files :
142
- - any-glob-to-any-file : ' sourcepolicy/**'
146
+ - any-glob-to-any-file : " sourcepolicy/**"
143
147
144
148
# area:util
145
149
area/util :
146
150
- changed-files :
147
- - any-glob-to-any-file : ' util/**'
151
+ - any-glob-to-any-file : " util/**"
148
152
149
153
# area:worker
150
154
area/worker :
151
155
- changed-files :
152
- - any-glob-to-any-file : ' worker/**'
156
+ - any-glob-to-any-file : " worker/**"
153
157
154
158
# area:windows
155
159
area/windows :
156
160
- changed-files :
157
- - any-glob-to-any-file : ' **/*_windows.go'
161
+ - any-glob-to-any-file : " **/*_windows.go"
0 commit comments