Skip to content

Commit 8b46672

Browse files
authored
Update labeler.yml
1 parent 7527de9 commit 8b46672

File tree

1 file changed

+61
-63
lines changed

1 file changed

+61
-63
lines changed

.github/labeler.yml

Lines changed: 61 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,69 @@
1-
# ============================================
2-
# 🏷️ 자동 라벨링 규칙 (AF-FE Git Flow 반영)
3-
# ============================================
1+
labels:
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/**"
412

5-
feat:
6-
- head-branch:
7-
- '^feat/'
8-
- '^feature/'
9-
- paths:
10-
- 'src/pages/**'
11-
- 'src/auth/**'
12-
- 'src/stamp/**'
13-
- 'src/shared/components/**'
14-
- 'src/shared/styles/**'
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"
1525

16-
setting:
17-
- head-branch:
18-
- '^setting/'
19-
- paths:
20-
- 'config/**'
21-
- '.env*'
22-
- 'package.json'
23-
- 'tailwind.config.js'
24-
- 'next.config.ts'
25-
- 'tsconfig.json'
26-
- 'postcss.config.mjs'
27-
- 'eslint.config.mjs'
26+
- label: "api"
27+
head-branch:
28+
- "^api/"
29+
paths:
30+
- "src/shared/api/**"
31+
- "src/shared/hooks/**"
32+
- "src/shared/utils/**"
2833

29-
api:
30-
- head-branch:
31-
- '^api/'
32-
- paths:
33-
- 'src/shared/api/**'
34-
- 'src/shared/hooks/**'
35-
- 'src/shared/utils/**'
34+
- label: "fix"
35+
head-branch:
36+
- "^fix/"
37+
title:
38+
- "\\[Fix\\]"
39+
paths:
40+
- "src/**"
3641

37-
fix:
38-
- head-branch:
39-
- '^fix/'
40-
- title:
41-
- '\[Fix\]'
42-
- paths:
43-
- 'src/**'
42+
- label: "release"
43+
head-branch:
44+
- "^release/"
45+
paths:
46+
- "CHANGELOG.md"
4447

45-
release:
46-
- head-branch:
47-
- '^release/'
48-
- paths:
49-
- 'CHANGELOG.md'
48+
- label: "hotfix"
49+
head-branch:
50+
- "^hotfix/"
51+
- "^HOTFIX/"
52+
title:
53+
- "\\[Hotfix\\]"
54+
paths:
55+
- "src/**"
5056

51-
hotfix:
52-
- head-branch:
53-
- '^hotfix/'
54-
- '^HOTFIX/'
55-
- title:
56-
- '\[Hotfix\]'
57-
- paths:
58-
- 'src/**'
57+
- label: "docs"
58+
paths:
59+
- "**/*.md"
60+
- "README.md"
5961

60-
docs:
61-
- paths:
62-
- '**/*.md'
63-
- 'README.md'
62+
- label: "refactor"
63+
head-branch:
64+
- "^refactor/"
65+
title:
66+
- "\\[Refactor\\]"
67+
paths:
68+
- "src/**"
6469

65-
refactor:
66-
- head-branch:
67-
- '^refactor/'
68-
- title:
69-
- '\[Refactor\]'
70-
- paths:
71-
- 'src/**'

0 commit comments

Comments
 (0)