Skip to content
Open
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
43 changes: 43 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!-- 작은 PR로 올리기: 한 번에 200줄 이하, 이상적으로 50줄 내외의 변경만 포함시키는 것이 좋아요 -->

## 🌷 Summary
<!-- TL;DR처럼 한눈에 이해할 수 있게 설명 -->


## 📢 Description
<!-- 변경 이유, 주요 변경점, 배경 등 상세 설명 -->


## 🐙 Related Issue
<!-- 연관 이슈 번호 또는 링크 (예: close #123) -->
close
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

GitHub의 이슈 자동 종료 기능을 더 편리하게 사용할 수 있도록 #를 추가하는 것을 제안합니다. 사용자가 이슈 번호만 입력하면 되므로 실수를 줄일 수 있습니다.

Suggested change
close
close #


## Real Behavior Proof (필수)

> CI, unit test, lint 결과만으로는 충분하지 않습니다.
> 실제 실행 로그, 스크린샷, 녹화, 터미널 출력, 또는 실제 환경 관측 결과를 첨부하세요.

- 실제 실행 환경:
- 실행한 명령 / 조작:
- 결과 증거:
- 검증한 시나리오:
- 검증하지 않은 영역:
- 증거가 부족하다면 그 이유:

## Human Decision Needed

- [ ] 없음 — 에이전트 판단으로 진행 가능
- [ ] 제품 / UX 결정 필요
- [ ] 비용 / 수익 영향 결정 필요
- [ ] 보안 / 데이터 위험 승인 필요
- [ ] 릴리즈 타이밍 결정 필요

필요하다면 설명:


## Commit / PR Title Convention

- ❌ `feat:` 사용 금지
- ✅ `feature: <한국어 설명>` 사용
- 예: `feature: 로그인 화면 에러 메시지 다국어 처리`
- 그 외 prefix는 conventional commits를 따른다: `fix`, `refactor`, `docs`, `test`, `chore`, `perf`, `ci`
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

medium

Conventional Commits 표준에서 정의하는 build (빌드 시스템 변경), style (코드 포맷팅), revert (이전 커밋 되돌리기) 타입이 누락되어 있습니다. 프로젝트의 다양한 변경 사항을 포괄할 수 있도록 이들을 추가하는 것을 권장합니다.