Initial commit

This commit is contained in:
이상진 2025-07-12 03:54:24 +00:00
commit 6c7f7dd97a
7 changed files with 189 additions and 0 deletions

View File

@ -0,0 +1,30 @@
name: "🌱 기능 추가"
about: 기능을 추가할 때
title: "[Feature] "
body:
- type: markdown
attributes:
value: |
오늘도 화이팅 😄
- type: textarea
id: background
attributes:
label: 배경
description: 이 기능을 추가하게 된 배경을 작성해주세요.
placeholder: 기능을 추가하기 전 상황은 간단하게, 추가하게 된 이유는 가급적 자세하게 작성해주세요!
validations:
required: true
- type: textarea
id: changes
attributes:
label: 작업 내용
description: 필요한 작업 내용을 작성해주세요.
placeholder: 작업과 그 작업의 예상 결과를 작성해주세요!
validations:
required: true
- type: textarea
id: notes
attributes:
label: 기타 및 참고자료
description: 추가적으로 전달하고 싶은 내용이나 참고할 만한 자료가 있다면 작성해주세요.
placeholder: 출처 링크, 논의하고 싶은 사항 등을 자유롭게 작성해주세요!

View File

@ -0,0 +1,28 @@
name: "🐞 버그 수정"
about: 버그를 수정할 때
title: "[Bug]: "
body:
- type: markdown
attributes:
value: |
오늘도 화이팅 😄
- type: textarea
id: background
attributes:
label: 배경
description: 발생한 버그가 어떤 상황에서 발생했는지 작성해주세요.
placeholder: 버그 발생 시나리오, 재현 방법, 로그 등을 자세히 작성해주세요!
validations:
required: true
- type: textarea
id: changes
attributes:
label: 작업 내용 (예상)
description: 필요한 작업 내용을 작성해주세요.
placeholder: 작업과 그 작업의 예상 결과를 작성해주세요!
- type: textarea
id: notes
attributes:
label: 기타 및 참고자료
description: 추가적으로 전달하고 싶은 내용이나 참고할 만한 자료가 있다면 작성해 주세요.
placeholder: 출처 링크, 논의하고 싶은 사항 등을 자유롭게 작성해 주세요!

View File

@ -0,0 +1,30 @@
name: "🛠️ 리팩터링"
about: 코드 수정이 필요할 때
title: "[Refactor]: "
body:
- type: markdown
attributes:
value: |
오늘도 화이팅 😄
- type: textarea
id: background
attributes:
label: 배경
description: 리팩터링을 결정하게 된 배경을 작성해주세요.
placeholder: 현재 코드의 문제점, 리팩토링을 통해 얻을 수 있는 이점 등을 상세히 작성해 주세요!
validations:
required: true
- type: textarea
id: changes
attributes:
label: 작업 내용
description: 필요한 작업 내용을 작성해주세요.
placeholder: 작업과 그 작업의 예상 결과를 작성해주세요!
validations:
required: true
- type: textarea
id: notes
attributes:
label: 기타 및 참고자료
description: 추가적으로 전달하고 싶은 내용이나 참고할 만한 자료가 있다면 작성해주세요.
placeholder: 출처 링크, 논의하고 싶은 사항 등을 자유롭게 작성해주세요!

View File

@ -0,0 +1,28 @@
name: "🏭 인프라 관련 작업"
about: 배포 등 인프라 관련 작업을 진행할 때
title: "[Infra]: "
body:
- type: markdown
attributes:
value: |
오늘도 화이팅 😄
- type: textarea
id: background
attributes:
label: 배경
description: 작업의 배경과 상황을 작성해주세요.
placeholder: 구체적으로 작성할 수록 좋아요!
validations:
required: true
- type: textarea
id: changes
attributes:
label: 작업 내용 (배포 관련)
description: 필요한 작업 내용을 작성해주세요.
placeholder: 작업과 그 작업의 예상 결과를 작성해주세요!
- type: textarea
id: notes
attributes:
label: 기타 및 참고자료
description: 추가적으로 전달하고 싶은 내용이나 참고할 만한 자료가 있다면 작성해주세요.
placeholder: 출처 링크, 논의하고 싶은 사항 등을 자유롭게 작성해주세요!

View File

@ -0,0 +1,20 @@
<!-- 제목 양식 -->
<!-- [이슈번호] 작업 요약 (예시: [#10] Gitea 템플릿 생성) -->
## 📝 관련 이슈 및 PR
**PR과 관련된 이슈 번호**
- #
**병합, 또는 참고가 필요한 필요한 PR 번호**
- #
## ✨ 작업 내용
<!-- 어떤 작업을 했는지 알려주세요! -->
## 🧪 테스트
<!-- 어떤 테스트를 생각했고 진행했는지 알려주세요! -->
## 📚 참고 자료 및 기타
<!-- 참고한 자료, 또는 논의할 사항이 있다면 알려주세요! -->

50
.gitignore vendored Normal file
View File

@ -0,0 +1,50 @@
# ---> Java
# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
replay_pid*
# ---> Gradle
.gradle
**/build/
!src/**/build/
# Ignore Gradle GUI config
gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar
# Avoid ignore Gradle wrappper properties
!gradle-wrapper.properties
# Cache of project
.gradletasknamecache
# Eclipse Gradle plugin generated files
# Eclipse Core
.project
# JDT-specific (Eclipse Java Development Tools)
.classpath
.idea

3
README.md Normal file
View File

@ -0,0 +1,3 @@
# issue-pr-template
공통으로 사용하게 될 이슈, PR 템플릿 저장소