-
-
Notifications
You must be signed in to change notification settings - Fork 544
/
Copy pathlabeler.yml
67 lines (57 loc) · 1.18 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
Admin:
- any-glob-to-any-file:
- "code/modules/admin/**"
# Any file within the config subfolder
Config:
- changed-files:
- any-glob-to-any-file:
- "config/**"
Dependencies:
- changed-files:
- any-glob-to-any-file:
- "**/package.json"
- "**/package-lock.json"
- "**/yarn.lock"
# When the .DME is changed
DME Edit:
- changed-files:
- any-glob-to-any-file:
- "./*.dme"
- "**/*.dme"
# Any .dmi changes
Sprites:
- changed-files:
- any-glob-to-any-file:
- "**/*.dmi"
# Changes to a .dm or anything in the code subfolder
Code Change:
- changed-files:
- any-glob-to-any-file:
- "**/*.dm"
- "code/**"
# Changes to a .dmm or anything in the _map subfolder
Map Change:
- changed-files:
- any-glob-to-any-file:
- "**/*.dmm"
- "_maps/**"
# Any changes to .ogg files are marked as sound
Sound:
- changed-files:
- any-glob-to-any-file:
- "**/*.ogg"
# Changes to the SQL subfolder
SQL:
- changed-files:
- any-glob-to-any-file:
- "SQL/**"
# Changes to the tgui subfolder
tgui:
- changed-files:
- any-glob-to-any-file:
- "tgui/**"
# Changes to the .Github subfolder
Github:
- changed-files:
- any-glob-to-any-file:
- ".github/**"