Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: PR template, ISSUE template 생성 #5

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/chore-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: BackEnd Chore request
about: 백엔드 설정 정보 이슈 템플릿입니다.
title: ''
labels: backend, chore
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

전체적으로 백엔드라는 표현은 필요 없을 것 같아요!

assignees: ''

---

## 목적
>

## 작업 세부사항
- [ ]

## 참고 사항
-

> 아래의 별표줄 밑에 **요구사항 ID**만 작성해주세요. Prefix 금지!

********************
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: BackEnd Feature request
about: 백엔드 기능 이슈 템플릿입니다.
title: ''
labels: backend, feature
assignees: ''

---

## 목적
>

## 작업 세부사항
- [ ]

## 참고 사항
-

> 아래의 별표줄 밑에 **요구사항 ID**만 작성해주세요. Prefix 금지!

********************
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/fix-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: BackEnd Fix request
about: 백엔드 수정 이슈 템플릿입니다.
title: ''
labels: backend, fix
assignees: ''

---

## 목적
>

## 작업 세부사항
- [ ]

## 참고 사항
-

> 아래의 별표줄 밑에 **요구사항 ID**만 작성해주세요. Prefix 금지!

********************
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/refactor-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: BackEnd Refactor request
about: 백엔드 리팩터링 이슈 템플릿입니다.
title: ''
labels: backend, refactor
assignees: ''

---

## 목적
>

## 작업 세부사항
- [ ]

## 참고 사항
-

> 아래의 별표줄 밑에 **요구사항 ID**만 작성해주세요. Prefix 금지!

********************
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/test-request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: BackEnd Test request
about: 백엔드 테스트 이슈 템플릿입니다.
title: ''
labels: backend, test
assignees: ''

---

## 목적
>

## 작업 세부사항
- [ ]

## 참고 사항
-

> 아래의 별표줄 밑에 **요구사항 ID**만 작성해주세요. Prefix 금지!

********************
34 changes: 34 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## 작업 내용
-

## 참고 사항
-

## 관련 이슈
-

## 예시
```markdown
## 작업 내용
전화번호 인증을 구현했습니다.

- 전화번호 인증 번호 랜덤 생성 (#123)
- 전화번호 문구 고정
- 외부 API를 통한 문자 전송 (#789)

## 참고 사항
- 테스트를 작성했는데, 외부 API이기에

## 관련 이슈
- closes #123
- closes #789
```

PR이 병합되면 issue #123, #789가 자동으로 닫힙니다.


## PR 체크리스트
- [ ] 테스트는 모두 통과했나요?
- [ ] 빌드는 성공했나요?
- [ ] 코드 포맷팅을 진행했나요?
- [ ] PR 내부의 예시는 삭제하셨나요?