-
Notifications
You must be signed in to change notification settings - Fork 4.8k
72 lines (58 loc) · 1.54 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
68
69
70
71
72
# .github/labeler.yml
# Label PRs that modify documentation files
Documentation:
- changed-files:
- 'docs/**'
# Label PRs with 'feature' if the head branch name starts with 'feature'
Feature:
- head-branch: ['^feature']
# Label PRs that modify files in the agent directory
Agent:
- changed-files:
- 'agent/**'
# Label PRs that modify files in the .github directory
GitHub:
- changed-files:
- '.github/**'
# Label PRs that modify files in the .turbo directory
Turbo:
- changed-files:
- '.turbo/**'
# Label PRs that modify files in the characters directory
Characters:
- changed-files:
- 'characters/**'
# Label PRs that modify files in the client directory
Client:
- changed-files:
- 'client/**'
- changed-files:
- 'packages/client-*/**'
# Label PRs that modify files in the packages directory
Packages:
- changed-files:
- 'packages/**'
# Label PRs that modify files in the scripts directory
Scripts:
- changed-files:
- 'scripts/**'
# Label PRs that modify files in the src directory
Source:
- changed-files:
- 'src/**'
# Label PRs that modify files in the tests directory
Tests:
- changed-files:
- 'tests/**'
# Label PRs that modify files in the packages/adapter* directories
Adapter:
- changed-files:
- 'packages/adapter*/**'
# Label PRs that modify files in the packages/core directory
Core:
- changed-files:
- 'packages/core/**'
# Label PRs that modify files in the packages/plugin* directories
Plugin:
- changed-files:
- 'packages/plugin*/**'