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