-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
[#202] docs: issue, PR template 수정
- Loading branch information
Showing
4 changed files
with
54 additions
and
26 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
labels: | ||
- name: 🐛 fix bug | ||
patterns: | ||
- 'bug' | ||
- 'fix' | ||
- '버그' | ||
- name : 📝 docs | ||
patterns: | ||
- 'docs' | ||
- '문서' | ||
- 'documentation' | ||
- name : ✨ new feature | ||
patterns: | ||
- 'feat' | ||
- name : 🎨 design | ||
patterns: | ||
- 'design' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,24 @@ | ||
# 설명 | ||
|
||
작업 내역을 설명하고 어떤 이슈와 관련되어 있는지 명시합니다. | ||
Fixes # (issue), Closes # (issue), Resolves # (issue) 등을 사용하여 이슈를 닫을 수 있습니다. | ||
|
||
## 작업 종류 | ||
|
||
관련 내용에 체크해주세요. | ||
|
||
- [ ] 버그 수정 (기존 기능에 영향을 미치지 **않는** 수정) | ||
- [ ] 새로운 feature (기존 기능에 영향을 미치지 **않는** 기능 추가) | ||
- [ ] Breaking change (기존 기능에 영향을 **주는** 수정) | ||
- [ ] 문서 수정 | ||
- [ ] 기타 (please describe): | ||
Fixes # | ||
Closes # | ||
Resolves # | ||
|
||
# 작업 내역 | ||
|
||
작업 내역을 설명합니다. | ||
|
||
- [ ] 작업 내역 1 (ex. 로그인 기능 추가) | ||
- [ ] 작업 내역 2 (ex. 인증 기능 추가) | ||
- 작업 내역 1 (ex. 로그인 기능 추가) | ||
- 작업 내역 2 (ex. 인증 기능 추가) | ||
|
||
## 작업 결과물 | ||
|
||
작업 결과물을 첨부합니다. (ex. 스크린샷, gif, 다른 사람이 사용할 수 있는 ㅇㅇAPI 등) | ||
|
||
## 참고 사항(선택) | ||
|
||
작업을 진행하면서 참고한 사항이나 참고할 사항이 있다면 적어주세요. | ||
(ex. 나중에 수정해야 할 부분, 참고한 사이트, 참고한 코드 등) | ||
|
||
# 체크 리스트 | ||
|
||
- [ ] 이해하기 어려운 부분은 주석을 달았습니다. | ||
- [ ] 내 코드는 Lint를 통과했고 경고(warning)가 없습니다. | ||
- [ ] 내 코드에 불필요한 print 등이 없습니다. |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Labeler | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- synchronize | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
|
||
- name: Install dependencies | ||
run: npm install | ||
|
||
- name: Run labeler | ||
run: npx github-label-sync --access-token=$GITHUB_TOKEN .github/labeler.yml | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.ACTION_SECRET_TOKEN }} |