Skip to content

Commit 8cf91fa

Browse files
Create your-template.yml
1 parent e7ab005 commit 8cf91fa

File tree

1 file changed

+71
-0
lines changed

1 file changed

+71
-0
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
name: 기능 개발 PR
2+
description: 새로운 기능 개발이나 개선 작업을 위한 Pull Request 템플릿입니다.
3+
title: "[Feature] " # PR 제목에 자동으로 붙는 접두사
4+
labels: ["feature", "backend"]
5+
6+
body:
7+
- type: textarea
8+
id: summary
9+
attributes:
10+
label: 🔍 개요
11+
placeholder: 이 PR이 무엇을 해결하거나 구현하는지 간단히 작성해주세요.
12+
validations:
13+
required: true
14+
15+
- type: textarea
16+
id: changes
17+
attributes:
18+
label: ✨ 주요 변경사항
19+
placeholder: |
20+
- 회원 가입 로직 수정
21+
- Cart 엔티티에 필드 추가
22+
validations:
23+
required: true
24+
25+
- type: checkboxes
26+
id: checklist
27+
attributes:
28+
label: ✅ 작업 체크리스트
29+
options:
30+
- label: 코드가 정상적으로 동작함
31+
- label: 테스트가 통과함
32+
- label: 문서가 최신 상태로 유지됨
33+
- label: 리뷰어가 이해할 수 있도록 설명이 충분함
34+
35+
- type: textarea
36+
id: test
37+
attributes:
38+
label: 🧪 테스트 방법
39+
placeholder: |
40+
- Postman으로 회원가입 요청 → 200 OK
41+
- JUnit 테스트 16개 통과
42+
validations:
43+
required: false
44+
45+
- type: input
46+
id: issue
47+
attributes:
48+
label: 📎 관련 이슈
49+
placeholder: Closes #123, Fixes #456
50+
validations:
51+
required: false
52+
53+
- type: textarea
54+
id: concerns
55+
attributes:
56+
label: 🤔 고민해볼 점
57+
placeholder: |
58+
- 도메인 간 의존성 구조 괜찮을지?
59+
- 예외 처리 위치가 애매한데 조언 부탁드립니다.
60+
validations:
61+
required: false
62+
63+
- type: textarea
64+
id: review
65+
attributes:
66+
label: 🙏 리뷰 요청사항
67+
placeholder: |
68+
- 서비스 로직 구조 리뷰 부탁드립니다.
69+
- 테스트 방식 괜찮은지 확인해주세요.
70+
validations:
71+
required: false

0 commit comments

Comments
 (0)