Skip to content

Commit

Permalink
Merge pull request #11 from debate-timer/docs/#10
Browse files Browse the repository at this point in the history
* docs: 이슈 템플릿 추가

* feat: 이슈 생성 시 자동으로 Assignees 할당 기능 추가

* docs: 핫픽스 이슈 템플릿 추가

* docs: 기타 템플릿 추가
  • Loading branch information
leegwichan authored Dec 11, 2024
2 parents e099ae7 + 9c3fb4c commit ce42a87
Show file tree
Hide file tree
Showing 9 changed files with 107 additions and 12 deletions.
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/chore-template.md
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(마감기한)
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/docs-template.md
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(마감기한)
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/feat-template.md
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(마감기한)
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/fix-template.md
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(마감기한)
15 changes: 15 additions & 0 deletions .github/ISSUE_TEMPLATE/hotfix-template.md
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
12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/issue-template.md

This file was deleted.

13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/refactor-template.md
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(마감기한)
13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/test-template.md
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(마감기한)
14 changes: 14 additions & 0 deletions .github/workflows/Auto_Issue_Setting.yml
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 }}

0 comments on commit ce42a87

Please sign in to comment.