Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOCS] 이슈 템플릿 생성 #11

Merged
merged 4 commits into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

와... 이렇게 각 title 마다 label와 assignees를 각각 설정할 수도 있군요. 오디에서는 하나의 단일 템플릿을 사용해 몰랐어요 😮

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 }}
Loading