From 2bc9957778b7fb518da5867fead06fad8f64c230 Mon Sep 17 00:00:00 2001 From: Jeongho Date: Fri, 3 Jan 2025 21:36:51 +0900 Subject: [PATCH] =?UTF-8?q?[TNT-69]=20chore:=20issue=20form=20=EC=83=9D?= =?UTF-8?q?=EC=84=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/issue-form.yaml | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/issue-form.yaml diff --git a/.github/ISSUE_TEMPLATE/issue-form.yaml b/.github/ISSUE_TEMPLATE/issue-form.yaml new file mode 100644 index 00000000..9a83e86c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue-form.yaml @@ -0,0 +1,32 @@ +name: '이슈 생성' +description: '이슈를 생성합니다. 생성된 이슈는 Jira task 로 자동 생성됩니다.' +labels: [order] +title: '이슈명을 입력해주세요.' +body: + - type: input + id: parentKey + attributes: + label: 'Epic/Story Ticket Number' + description: 'Ticket Number를 기입해주세요.' + placeholder: 'TNT-00' + validations: + required: true + + - type: input + id: description + attributes: + label: '이슈 내용' + description: '이슈에 대해 간략하게 설명해주세요.' + validations: + required: true + + - type: textarea + id: tasks + attributes: + label: '체크리스트(Tasks)' + description: '해당 이슈와 연관된 작업 목록을 작성해주세요' + value: | + - [ ] Task1 + - [ ] Task2 + validations: + required: false