We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 947e93e + ca567c9 commit 1217263Copy full SHA for 1217263
1 file changed
.github/workflows/labeler.yml
@@ -21,14 +21,13 @@ jobs:
21
console.log(`📋 PR Title: ${title}`);
22
23
const labelMap = [
24
- { pattern: /^feat:/i, label: '✨ feat' },
25
- { pattern: /^fix:/i, label: '🐞 fix' },
26
- { pattern: /^refactor:/i, label: '🔨 refactor' },
27
- { pattern: /^docs:/i, label: '📃 docs' },
28
- { pattern: /^chore:/i, label: '⚙️ chore' },
29
- { pattern: /^test:/i, label: '✅ test' },
30
- { pattern: /^style:/i, label: '🎨 style' },
31
- { pattern: /^qa:/i, label: '🛠️ qa' }
+ { pattern: /^feat:/i, label: 'feat' },
+ { pattern: /^fix:/i, label: 'fix' },
+ { pattern: /^refactor:/i, label: 'refactor' },
+ { pattern: /^docs:/i, label: 'docs' },
+ { pattern: /^chore:/i, label: 'chore' },
+ { pattern: /^test:/i, label: 'test' },
+ { pattern: /^style:/i, label: 'style' }
32
];
33
34
// 매칭되는 라벨 찾기
0 commit comments