Skip to content

Commit 31dd631

Browse files
author
Kirill Zolottsev
authored
chore: update chore template
1 parent 620773c commit 31dd631

File tree

2 files changed

+39
-34
lines changed

2 files changed

+39
-34
lines changed

.github/ISSUE_TEMPLATE/chore.md

Lines changed: 0 additions & 34 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/chore.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Chore
2+
description: Не фича и не баг
3+
labels: ['enhancement']
4+
assignees:
5+
- TorinAsakura
6+
body:
7+
- type: input
8+
id: task-type
9+
attributes:
10+
label: Какого рода задача?
11+
placeholder: Поменять значения или изменить логику
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: details
16+
attributes:
17+
label: Что и где будем менять?
18+
placeholder: |
19+
**_Например:_**
20+
Нужно изменить условие функции
21+
```javascript
22+
if(servicePayment === 1) {
23+
return
24+
}
25+
```
26+
на
27+
```javascript
28+
if(!servicePayment && !servicePaymentValue){
29+
window.location.href = homePageUrl || userProfilePageUrl
30+
return null
31+
}
32+
```'
33+
validations:
34+
required: true
35+
- type: textarea
36+
id: ref
37+
attributes:
38+
label: Укажите референс
39+
placeholder: В связи с чем было принято решение? Ссылка на другую задачу, ПР, в общем – нужен контекст

0 commit comments

Comments
 (0)