Skip to content

Commit 1217263

Browse files
authored
Merge pull request #227 from YAPP-Github/develop
워크플로우 추가 반영을 위한 develop -> main 머지
2 parents 947e93e + ca567c9 commit 1217263

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

.github/workflows/labeler.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ jobs:
2121
console.log(`📋 PR Title: ${title}`);
2222
2323
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' }
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' }
3231
];
3332
3433
// 매칭되는 라벨 찾기

0 commit comments

Comments
 (0)