Skip to content

Commit a6e41aa

Browse files
authored
add labeler
1 parent 4b19a50 commit a6e41aa

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed

.github/workflows/labeler.yml

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# .github/labeler.yml
2+
3+
# Label PRs that modify documentation files
4+
Documentation:
5+
- changed-files:
6+
- 'docs/**'
7+
8+
# Label PRs with 'feature' if the head branch name starts with 'feature'
9+
Feature:
10+
- head-branch: ['^feature']
11+
12+
# Label PRs that modify files in the agent directory
13+
Agent:
14+
- changed-files:
15+
- 'agent/**'
16+
17+
# Label PRs that modify files in the .github directory
18+
GitHub:
19+
- changed-files:
20+
- '.github/**'
21+
22+
# Label PRs that modify files in the .turbo directory
23+
Turbo:
24+
- changed-files:
25+
- '.turbo/**'
26+
27+
# Label PRs that modify files in the characters directory
28+
Characters:
29+
- changed-files:
30+
- 'characters/**'
31+
32+
# Label PRs that modify files in the client directory
33+
Client:
34+
- changed-files:
35+
- 'client/**'
36+
- changed-files:
37+
- 'packages/client-*/**'
38+
39+
# Label PRs that modify files in the packages directory
40+
Packages:
41+
- changed-files:
42+
- 'packages/**'
43+
44+
# Label PRs that modify files in the scripts directory
45+
Scripts:
46+
- changed-files:
47+
- 'scripts/**'
48+
49+
# Label PRs that modify files in the src directory
50+
Source:
51+
- changed-files:
52+
- 'src/**'
53+
54+
# Label PRs that modify files in the tests directory
55+
Tests:
56+
- changed-files:
57+
- 'tests/**'
58+
59+
# Label PRs that modify files in the packages/adapter* directories
60+
Adapter:
61+
- changed-files:
62+
- 'packages/adapter*/**'
63+
64+
# Label PRs that modify files in the packages/core directory
65+
Core:
66+
- changed-files:
67+
- 'packages/core/**'
68+
69+
# Label PRs that modify files in the packages/plugin* directories
70+
Plugin:
71+
- changed-files:
72+
- 'packages/plugin*/**'

0 commit comments

Comments
 (0)