-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* docs: 이슈 템플릿 추가 * feat: 이슈 생성 시 자동으로 Assignees 할당 기능 추가 * docs: 핫픽스 이슈 템플릿 추가 * docs: 기타 템플릿 추가
- Loading branch information
Showing
9 changed files
with
107 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Chore Template" | ||
about: 기타 이슈 템플릿 | ||
title: '[CHORE] ' | ||
labels: chore | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Docs Template" | ||
about: 문서화 이슈 템플릿 | ||
title: '[DOCS] ' | ||
labels: docs | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Feat Template" | ||
about: 기능 추가 이슈 템플릿 | ||
title: "[FEAT] " | ||
labels: feat | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Fix Template" | ||
about: 기능 수정 이슈 템플릿 | ||
title: "[FIX] " | ||
labels: fix | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: "Hot-Fix Template" | ||
about: 핫픽스 이슈 템플릿 | ||
title: "[HOTFIX] " | ||
labels: hotfix | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) | ||
|
||
- ASAP |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Refactor Template" | ||
about: 리팩토링 이슈 템플릿 | ||
title: "[REFACTOR] " | ||
labels: refactor | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
name: "Test Template" | ||
about: 테스트 이슈 템플릿 | ||
title: "[TEST] " | ||
labels: test | ||
assignees: '' | ||
|
||
--- | ||
|
||
### ✨ Description | ||
|
||
|
||
### ✨ Time(마감기한) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Auto Issue Setting | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
auto-assign: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Auto-assign issue creator | ||
uses: pozil/auto-assign-issue@v2 | ||
with: | ||
assignees: ${{ github.actor }} |