-
-
Notifications
You must be signed in to change notification settings - Fork 447
/
Copy pathlabeler.yml
50 lines (40 loc) · 870 Bytes
/
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
Admin:
- 'code/modules/admin/**'
# Any file within the config subfolder
Config:
- 'config/**'
Dependencies:
- '**/package.json'
- '**/package-lock.json'
- '**/yarn.lock'
# When the .DME is changed
DME Edit:
- './*.dme'
- '**/*.dme'
# Changes to a .dmi or anything in the icons folder
Sprites:
- '**/*.dmi'
- 'icons/*.dmi'
# Javascript changes
Javascript:
- '**/*.js'
# Changes to a .dmm or anything in the _maps folder or any of the map definitions
Mapping:
- '**/*.dmm'
- '_maps/**'
- 'code/datums/ruins/**'
- 'code/datums/shuttles.dm'
# Changes to a .ogg or anything in the sound folder
Sound:
- '**/*.ogg'
- 'sound/**'
# Changes to the SQL subfolder
SQL:
- 'SQL/**'
# Encompasses both the tgui and the tgui-next folder
tgui:
- 'tgui/**'
- 'tgui-next/**'
# Changes to the .Github folder
Github:
- '.github/**'