Skip to content

Commit a463938

Browse files
authored
지라 연동 이슈 폼 생성
1 parent 6855c14 commit a463938

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: '이슈 생성'
2+
description: 'Repo에 이슈를 생성하며, 생성된 이슈는 Jira와 연동됩니다.'
3+
labels: [feat]
4+
title: '이슈 이름을 작성해주세요'
5+
body:
6+
- type: input
7+
id: parentKey
8+
attributes:
9+
label: '🎟️ 상위 작업 (Ticket Number)'
10+
description: '상위 작업의 Ticket Number를 기입해주세요'
11+
placeholder: 'PRJ-00'
12+
validations:
13+
required: true
14+
15+
- type: input
16+
id: branch
17+
attributes:
18+
label: '🌳 브랜치명 (Branch)'
19+
description: '영어로 브랜치명을 작성해주세요'
20+
validations:
21+
required: true
22+
23+
- type: input
24+
id: description
25+
attributes:
26+
label: '📝 상세 내용(Description)'
27+
description: '이슈에 대해서 간략히 설명해주세요'
28+
validations:
29+
required: true
30+
31+
- type: textarea
32+
id: tasks
33+
attributes:
34+
label: '✅ 체크리스트(Tasks)'
35+
description: '해당 이슈에 대해 필요한 작업목록을 작성해주세요'
36+
value: |
37+
- [ ] Task1
38+
- [ ] Task2
39+
validations:
40+
required: true

0 commit comments

Comments
 (0)