Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
24 changes: 24 additions & 0 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## 📝 이슈 요약 (Summary)
<!-- 어떤 작업인지 간단히 적어주세요 -->


## 🎯 상세 내용 (Details)
<!-- 필요한 작업 내용을 구체적으로 작성해주세요 -->

<!--
🪲 버그인 경우 아래 항목도 함께 작성해주세요:

-->



## 📸 참고 자료 / 스크린샷 (References & Screenshots)
<!-- 관련 문서, 디자인 링크, API 명세 등이 있다면 첨부해주세요 -->
<!-- 버그라면 오류 화면 또는 콘솔 로그도 함께 올려주세요 -->



## 🔗 관련 이슈 (Related Issues)
<!-- PR에서 자동으로 이슈를 닫으려면 Closes #이슈번호 -->
- Closes #
- Related #
32 changes: 32 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
## 🔍 관련 이슈 (Related Issues)
<!-- 이번 작업과 연결된 이슈 번호를 적어주세요 -->
- Closes #
- Related to #
Copy link
Member

Choose a reason for hiding this comment

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

제가 Related to는 사용해본적이 없는데 사용했을 때 편했었나욥?? JustWonder

Copy link
Member

@u-zzn u-zzn Nov 14, 2025

Choose a reason for hiding this comment

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

이번에 구현해야 할 작업이 규모가 크지 않아서 Related to까지는 필요하지 않을 것 같은데, 아예 빼는건 어떻게 생각하시나요 ?? :)




## 📝 변경 사항 요약 (Summary)
<!-- 이번 PR에서 어떤 부분이 변경되었는지 간단히 정리해주세요 -->




## 🎯 작업 내용 상세 (Details)
<!-- 작업 과정, 고려한 부분, 구현 방식 등을 조금 더 구체적으로 설명해주세요 -->




## 📸 스크린샷 (Screenshots)
<!-- UI 변경이 있다면 Before / After 형식으로 첨부해주세요 -->
<!-- 예시:
| Before | After |
|--------|-------|
| 이미지 | 이미지 |
-->


## 💬 리뷰어 참고사항 (Notes for Reviewers)
<!-- 리뷰 시 중점적으로 봐주면 좋을 내용이나 참고 사항이 있다면 적어주세요 -->
-

2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
run: |
rm -rf output
mkdir -p output
# .git, node_modules 등은 제외하고 복사했어요
rsync -av \
--exclude '.git' \
--exclude '.github' \
--exclude 'node_modules' \
./ ./output/

Expand Down