From 6831baedb0d4b5d613b5084b23f2e9a4f98b4439 Mon Sep 17 00:00:00 2001 From: leegwichan Date: Tue, 10 Dec 2024 10:14:00 +0900 Subject: [PATCH 1/4] =?UTF-8?q?docs:=20=EC=9D=B4=EC=8A=88=20=ED=85=9C?= =?UTF-8?q?=ED=94=8C=EB=A6=BF=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/docs-template.md | 13 +++++++++++++ .github/ISSUE_TEMPLATE/feat-template.md | 13 +++++++++++++ .github/ISSUE_TEMPLATE/fix-template.md | 13 +++++++++++++ .github/ISSUE_TEMPLATE/issue-template.md | 12 ------------ .github/ISSUE_TEMPLATE/refactor-template.md | 13 +++++++++++++ .github/ISSUE_TEMPLATE/test-template.md | 13 +++++++++++++ 6 files changed, 65 insertions(+), 12 deletions(-) create mode 100644 .github/ISSUE_TEMPLATE/docs-template.md create mode 100644 .github/ISSUE_TEMPLATE/feat-template.md create mode 100644 .github/ISSUE_TEMPLATE/fix-template.md delete mode 100644 .github/ISSUE_TEMPLATE/issue-template.md create mode 100644 .github/ISSUE_TEMPLATE/refactor-template.md create mode 100644 .github/ISSUE_TEMPLATE/test-template.md diff --git a/.github/ISSUE_TEMPLATE/docs-template.md b/.github/ISSUE_TEMPLATE/docs-template.md new file mode 100644 index 0000000..d31516a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/docs-template.md @@ -0,0 +1,13 @@ +--- +name: "Docs Template" +about: 문서화 이슈 템플릿 +title: '[DOCS] ' +labels: docs +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한) diff --git a/.github/ISSUE_TEMPLATE/feat-template.md b/.github/ISSUE_TEMPLATE/feat-template.md new file mode 100644 index 0000000..cf2f908 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feat-template.md @@ -0,0 +1,13 @@ +--- +name: "Feat Template" +about: 기능 추가 이슈 템플릿 +title: "[FEAT] " +labels: feat +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한) diff --git a/.github/ISSUE_TEMPLATE/fix-template.md b/.github/ISSUE_TEMPLATE/fix-template.md new file mode 100644 index 0000000..0466516 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/fix-template.md @@ -0,0 +1,13 @@ +--- +name: "Fix Template" +about: 기능 수정 이슈 템플릿 +title: "[FIX] " +labels: fix +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한) diff --git a/.github/ISSUE_TEMPLATE/issue-template.md b/.github/ISSUE_TEMPLATE/issue-template.md deleted file mode 100644 index ad0c1a8..0000000 --- a/.github/ISSUE_TEMPLATE/issue-template.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -name: Issue Template -about: Describe this issue template's purpose here. -title: '' -labels: '' -assignees: '' - ---- - -### ✨ Description - -### ✨ Time(마감기한) diff --git a/.github/ISSUE_TEMPLATE/refactor-template.md b/.github/ISSUE_TEMPLATE/refactor-template.md new file mode 100644 index 0000000..87e55ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/refactor-template.md @@ -0,0 +1,13 @@ +--- +name: "Refactor Template" +about: 리팩토링 이슈 템플릿 +title: "[REFACTOR] " +labels: refactor +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한) diff --git a/.github/ISSUE_TEMPLATE/test-template.md b/.github/ISSUE_TEMPLATE/test-template.md new file mode 100644 index 0000000..144a5f9 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/test-template.md @@ -0,0 +1,13 @@ +--- +name: "Test Template" +about: 테스트 이슈 템플릿 +title: "[TEST] " +labels: test +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한) From 05ffbc401feb420d21213a5b92d9a5fed9ba6a3c Mon Sep 17 00:00:00 2001 From: leegwichan Date: Tue, 10 Dec 2024 10:23:46 +0900 Subject: [PATCH 2/4] =?UTF-8?q?feat:=20=EC=9D=B4=EC=8A=88=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1=20=EC=8B=9C=20=EC=9E=90=EB=8F=99=EC=9C=BC=EB=A1=9C=20?= =?UTF-8?q?Assignees=20=ED=95=A0=EB=8B=B9=20=EA=B8=B0=EB=8A=A5=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/Auto_Issue_Setting.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/Auto_Issue_Setting.yml diff --git a/.github/workflows/Auto_Issue_Setting.yml b/.github/workflows/Auto_Issue_Setting.yml new file mode 100644 index 0000000..d377a0e --- /dev/null +++ b/.github/workflows/Auto_Issue_Setting.yml @@ -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 }} From ead2e49f3972bbde0543fb62cf6c58449daba26e Mon Sep 17 00:00:00 2001 From: leegwichan Date: Tue, 10 Dec 2024 10:32:17 +0900 Subject: [PATCH 3/4] =?UTF-8?q?docs:=20=ED=95=AB=ED=94=BD=EC=8A=A4=20?= =?UTF-8?q?=EC=9D=B4=EC=8A=88=20=ED=85=9C=ED=94=8C=EB=A6=BF=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/hotfix-template.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/hotfix-template.md diff --git a/.github/ISSUE_TEMPLATE/hotfix-template.md b/.github/ISSUE_TEMPLATE/hotfix-template.md new file mode 100644 index 0000000..76b3d38 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/hotfix-template.md @@ -0,0 +1,15 @@ +--- +name: "Hot-Fix Template" +about: 핫픽스 이슈 템플릿 +title: "[HOTFIX] " +labels: hotfix +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한) + +- ASAP From 9c3fb4cfced53030b11de477849521309150080c Mon Sep 17 00:00:00 2001 From: leegwichan Date: Wed, 11 Dec 2024 10:57:47 +0900 Subject: [PATCH 4/4] =?UTF-8?q?docs:=20=EA=B8=B0=ED=83=80=20=ED=85=9C?= =?UTF-8?q?=ED=94=8C=EB=A6=BF=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/chore-template.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/chore-template.md diff --git a/.github/ISSUE_TEMPLATE/chore-template.md b/.github/ISSUE_TEMPLATE/chore-template.md new file mode 100644 index 0000000..f648ffb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/chore-template.md @@ -0,0 +1,13 @@ +--- +name: "Chore Template" +about: 기타 이슈 템플릿 +title: '[CHORE] ' +labels: chore +assignees: '' + +--- + +### ✨ Description + + +### ✨ Time(마감기한)