Skip to content

Commit

Permalink
chore: 기여 문서 및 issue, pr 템플릿 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
kangju2000 committed Jul 31, 2024
1 parent d000e8e commit 8a849a7
Show file tree
Hide file tree
Showing 6 changed files with 77 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Bug Report
description: 버그 제보를 위한 이슈 템플릿입니다.
title: '[Bug]: '
labels: ['bug']
body:
- type: markdown
attributes:
value: |
버그를 제보해주셔서 감사합니다!. 아래 양식을 작성하여 제출해주세요.
- type: textarea
id: what-happened
attributes:
label: 어떤 문제가 발생했나요?
description: 문제가 발생한 상황을 자세히 설명해주세요.
placeholder: '<!--- 어떤 문제가 발생했는지 자세히 설명해주세요. --->'
validations:
required: true
- type: input
id: extension-version
attributes:
label: 현재 사용하는 익스텐션 버전
description: 어떤 버전을 사용하고 계신가요? [이 문서](https://kangju2000.notion.site/8e15093688c24df3bb5e37a74fce5b9f?pvs=4)를 참고해주세요.
validations:
required: true
- type: dropdown
id: browsers
attributes:
label: 어떤 브라우저에서 문제가 발생했나요?
multiple: true
options:
- Chrome
- Firefox
- Safari
- Microsoft Edge
16 changes: 16 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Feature Request
description: 추가하고 싶은 기능을 제안하기 위한 이슈 템플릿입니다.
labels: [feature]
title: '[Feature]:'
body:
- type: markdown
attributes:
value: |
기능 제안을 해주셔서 감사합니다! 아래 양식을 작성하여 제출해주세요.
- type: textarea
id: description
attributes:
description: 어떤 기능을 추가하고 싶으신가요?
label: Description
validations:
required: true
7 changes: 7 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Description

<-- 해당 PR에 대한 설명을 작성해주세요. -->

## Check List

- [ ] [CONTRIBUTINHG.md](https://github.com/kangju2000/gachon-tools/blob/main/CONTRIBUTING.md)를 읽었으며, 내용을 준수했습니다.
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
engine-strict=true
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
20
18 changes: 18 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# 기여하는 방법

## 이슈

[이 곳](https://github.com/kangju2000/gachon-tools/issues)에서 이슈를 확인하고, 만약 없다면 새로운 이슈를 생성해주세요.

## Pull Request

[Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/)에 맞춰 커밋 메시지를 작성해주세요.

## 실행 방법

### 크롬 확장 프로그램 실행

1. `yarn build`로 빌드합니다.
2. `yarn dev`로 실행합니다. 켜두어야 hot reload가 가능합니다.
3. chrome://extensions/ 에 접속해여 우측 상단의 개발자 모드를 활성화합니다.
4. `압축 해제된 확장 프로그램을 로드합니다.`를 클릭하고, 루트의 `dist` 폴더를 선택합니다.

0 comments on commit 8a849a7

Please sign in to comment.