Skip to content

Commit

Permalink
chore: update chore template
Browse files Browse the repository at this point in the history
  • Loading branch information
Kirill Zolottsev authored Dec 27, 2022
1 parent 620773c commit 31dd631
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 34 deletions.
34 changes: 0 additions & 34 deletions .github/ISSUE_TEMPLATE/chore.md

This file was deleted.

39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/chore.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Chore
description: Не фича и не баг
labels: ['enhancement']
assignees:
- TorinAsakura
body:
- type: input
id: task-type
attributes:
label: Какого рода задача?
placeholder: Поменять значения или изменить логику
validations:
required: true
- type: textarea
id: details
attributes:
label: Что и где будем менять?
placeholder: |
**_Например:_**
Нужно изменить условие функции
```javascript
if(servicePayment === 1) {
return
}
```
на
```javascript
if(!servicePayment && !servicePaymentValue){
window.location.href = homePageUrl || userProfilePageUrl
return null
}
```'
validations:
required: true
- type: textarea
id: ref
attributes:
label: Укажите референс
placeholder: В связи с чем было принято решение? Ссылка на другую задачу, ПР, в общем – нужен контекст

0 comments on commit 31dd631

Please sign in to comment.