Skip to content

Commit

Permalink
Merge pull request #693 from kimdaeyeobbb/main
Browse files Browse the repository at this point in the history
new feature(#598): Git Issue Template
  • Loading branch information
kimdaeyeobbb authored Oct 7, 2024
2 parents 0556deb + ca434a0 commit 6608496
Show file tree
Hide file tree
Showing 5 changed files with 114 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: fix a bug 🐞
description: >-
발견한 버그에 대한 정보를 입력해주세요.
title: '[fix]: '
labels:
- fix
body:
- type: textarea
id: related-issue
attributes:
label: 관련 이슈
description: 관련 있는 이슈 번호 기재 (#이슈번호)
placeholder: >-
#77
- type: textarea
id: description
attributes:
label: 버그 설명
description: 버그에 대해 명확하게 설명하여 주세요
validations:
required: true
- type: textarea
id: reference
attributes:
label: 참고
description: 추가 논의사항 혹은 참고사항에 대해 기재해주세요
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
blank_issues_enabled: true

contact_links:
- name: Contributing Guide
url: https://github.com/githru/githru-vscode-ext/blob/main/CONTRIBUTING.md
about: 기여를 하시기 전에 본 문서를 참고해주세요.
- name: Documentation
url: https://github.com/githru/githru-vscode-ext/wiki
about: 참고 자료를 확인할 수 있습니다.
33 changes: 33 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: feature request 🚀
description: >-
추가하고 싶은 신규 기능에 대해 알려주세요.
title: '[new feature]: '
labels:
- new feature
body:
- type: textarea
id: related-issue
attributes:
label: 관련 이슈
description: 관련 있는 이슈 번호 기재 (#이슈번호)
placeholder: >-
#77
- type: textarea
id: description
attributes:
label: 기능 설명
description: 기능에 대해 명확하게 설명하여 주세요
validations:
required: true
- type: textarea
id: task
attributes:
label: 기능 목록
description: 기능 목록을 기재해주세요. 각 항목별로 새로운 줄에 입력하세요. (체크박스를 이용하면 좋아요)
placeholder: >-
- [ ] 기능 1
- type: textarea
id: reference
attributes:
label: 참고
description: 추가 논의사항 혹은 참고사항에 대해 기재해주세요
26 changes: 26 additions & 0 deletions .github/ISSUE_TEMPLATE/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: test 🧪
description: >-
테스트 사항에 대한 내용을 입력해주세요.
title: '[test]: '
labels:
- test
body:
- type: textarea
id: related-issue
attributes:
label: 관련 이슈
description: 관련 있는 이슈 번호 기재 (#이슈번호)
placeholder: >-
#77
- type: textarea
id: description
attributes:
label: 테스트 내용 설명
description: 테스트 내용에 대해 명확하게 설명하여 주세요 (서술 혹은 스크린샷 첨부)
validations:
required: true
- type: textarea
id: reference
attributes:
label: 참고
description: 추가 논의사항 혹은 참고사항에 대해 기재해주세요
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/update_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Update docs ✍️
description: >-
문서 업데이트가 필요한 경우 본 이슈를 사용하세요 (.md 파일 수정 등)
title: "[docs]: "
labels:
- docs
body:
- type: textarea
id: description
attributes:
label: Related issue
description: 관련 있는 이슈 번호 기재 (#이슈번호)
- type: textarea
id: context
attributes:
label: Content
description: 본 이슈에 대한 내용을 작성해주세요.
validations:
required: true

0 comments on commit 6608496

Please sign in to comment.