fix : change label action bot #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# enable labeler on issues, prs, or both. | ||
enable: | ||
issues: false | ||
prs: true | ||
# 레이블을 성공적으로 붙이고 PR에 보낼 코멘트를 설정 | ||
comments: | ||
prs: | | ||
Labeler has applied any labels matching special text in your title and description. | ||
Please review the labels and make any necessary changes. | ||
# 레이블 | ||
labels: | ||
'bug': | ||
include: | ||
- '\bfix\b' | ||
'test': | ||
include: | ||
- '\btest\b' | ||
'feature': | ||
include: | ||
- '\bfeat\b' | ||
'documentation': | ||
include: | ||
- '\bdocs\b' | ||
'refactor': | ||
include: | ||
- '\brefactor\b' | ||
'chore': | ||
include: | ||
- '\bchore\b' |