-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3e5949b
commit e90be9b
Showing
4 changed files
with
75 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,39 @@ | ||
name: 'Bug report' | ||
description: '버그 리포트 이슈 템플릿' | ||
title: '[ Fix ] ' | ||
labels: | ||
- 🐞 BugFix | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
<!-- 제목은 [ Fix ] 내용 으로 작성합니다 --> | ||
- type: markdown | ||
attributes: | ||
value: "## 💚 어떤 버그인가요?\n\n> 어떤 버그인지 간결하게 설명해주세요" | ||
|
||
- type: textarea | ||
id: bug_description | ||
attributes: | ||
label: '버그 상세 설명' | ||
description: '해당 버그를 자세히 설명해주세요.' | ||
placeholder: '예) 특정 버튼 클릭 시 에러 발생, 접근 권한 오류 등' | ||
value: '' | ||
|
||
- type: markdown | ||
attributes: | ||
value: "## 어떤 상황에서 발생한 버그인가요?\n\n> (가능하면) Given-When-Then 형식으로 서술해주세요" | ||
|
||
- type: textarea | ||
id: bug_scenario | ||
attributes: | ||
label: '버그 재현 상황' | ||
description: 'Given-When-Then 형태(또는 재현 시나리오)를 구체적으로 작성해주세요.' | ||
placeholder: | | ||
예) | ||
Given: 로그인 한 사용자 | ||
When: 장바구니 진입 후 결제 버튼 클릭 | ||
Then: 결제 완료 페이지 대신 에러 팝업 노출 | ||
value: '' |
This file was deleted.
Oops, something went wrong.
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,36 @@ | ||
name: 'Feature request' | ||
description: '기능 추가 이슈 템플릿' | ||
title: '[ Feat ] ' # 이슈 생성 시 기본으로 적용될 제목 | ||
labels: | ||
- ✨ Feature | ||
|
||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
<!-- 제목은 [ Feat ] 내용 으로 작성합니다 --> | ||
- type: markdown | ||
attributes: | ||
value: '## 💚 어떤 기능인가요?' | ||
|
||
- type: textarea | ||
id: feature_description | ||
attributes: | ||
label: '기능 설명' | ||
description: '어떤 기능인지 간단히 작성해주세요.' | ||
placeholder: '예) 로그인 기능 개선, 결제 모듈 추가 등' | ||
|
||
- type: markdown | ||
attributes: | ||
value: '## ✅ To Dos' | ||
|
||
- type: textarea | ||
id: todos | ||
attributes: | ||
label: '해야 할 작업' | ||
description: '체크박스 형태로 해야 할 작업을 나열해주세요.' | ||
placeholder: | | ||
- [ ] 작업 항목 1 | ||
- [ ] 작업 항목 2 | ||
- [ ] 작업 항목 3 |