File tree Expand file tree Collapse file tree 1 file changed +39
-68
lines changed
Expand file tree Collapse file tree 1 file changed +39
-68
lines changed Original file line number Diff line number Diff line change 1+ # 활성화 설정
2+ enable :
3+ issues : false
4+ prs : true
5+
6+ # 레이블 적용 시 코멘트
7+ comments :
8+ prs : |
9+ Labeler has automatically applied labels based on your PR title or description.
10+ Please check that they are appropriate.
11+
12+ # 라벨 매칭 규칙
113labels :
2- - label : " feat"
3- head-branch :
4- - " ^feat/"
5- - " ^feature/"
6- paths :
7- - " src/pages/**"
8- - " src/auth/**"
9- - " src/stamp/**"
10- - " src/shared/components/**"
11- - " src/shared/styles/**"
12-
13- - label : " setting"
14- head-branch :
15- - " ^setting/"
16- paths :
17- - " config/**"
18- - " .env*"
19- - " package.json"
20- - " tailwind.config.js"
21- - " next.config.ts"
22- - " tsconfig.json"
23- - " postcss.config.mjs"
24- - " eslint.config.mjs"
25-
26- - label : " api"
27- head-branch :
28- - " ^api/"
29- paths :
30- - " src/shared/api/**"
31- - " src/shared/hooks/**"
32- - " src/shared/utils/**"
33-
34- - label : " fix"
35- head-branch :
36- - " ^fix/"
37- title :
38- - " \\ [Fix\\ ]"
39- paths :
40- - " src/**"
41-
42- - label : " release"
43- head-branch :
44- - " ^release/"
45- paths :
46- - " CHANGELOG.md"
47-
48- - label : " hotfix"
49- head-branch :
50- - " ^hotfix/"
51- - " ^HOTFIX/"
52- title :
53- - " \\ [Hotfix\\ ]"
54- paths :
55- - " src/**"
56-
57- - label : " docs"
58- paths :
59- - " **/*.md"
60- - " README.md"
61-
62- - label : " refactor"
63- head-branch :
64- - " ^refactor/"
65- title :
66- - " \\ [Refactor\\ ]"
67- paths :
68- - " src/**"
69-
14+ ' feature ' :
15+ include :
16+ - ' \bfeat\b'
17+ - ' \bfeature\b'
18+
19+ ' bug ' :
20+ include :
21+ - ' \bfix\b'
22+ - ' \bbug\b'
23+
24+ ' refactor ' :
25+ include :
26+ - ' \brefactor\b'
27+
28+ ' docs ' :
29+ include :
30+ - ' \bdocs\b'
31+ - ' \breadme\b'
32+
33+ ' test ' :
34+ include :
35+ - ' \btest\b'
36+
37+ ' chore ' :
38+ include :
39+ - ' \bchore\b'
40+ - ' \bconfig\b'
You can’t perform that action at this time.
0 commit comments