Skip to content

Commit 44f2424

Browse files
committed
feat: upgrade environment
1 parent 8b7b716 commit 44f2424

File tree

9 files changed

+61
-146
lines changed

9 files changed

+61
-146
lines changed

.github/ISSUE_TEMPLATE/bug.yaml

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

.github/ISSUE_TEMPLATE/chore.yaml

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

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ contact_links:
66
- name: Telegram
77
url: https://t.me/atls_lab
88
about: Складируем полезные статьи
9-
- name: Discord
10-
url: https://discord.gg/jmgjzSKgNg
9+
- name: Сайт
10+
url: https://atls.team
11+
about: Сайт команды

.github/ISSUE_TEMPLATE/feature.yaml

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

.github/ISSUE_TEMPLATE/help-wanted.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ body:
77
- type: input
88
id: scope
99
attributes:
10-
label: 'Скоуп'
10+
label: 'Область'
1111
description: 'Область, в которой возникла проблема'
1212
placeholder: 'Например: Логика фильтрации элементов.'
1313
validations:
@@ -16,25 +16,25 @@ body:
1616
id: description
1717
attributes:
1818
label: 'Описание'
19-
description: 'Обобщенное описание проблемы'
20-
placeholder: 'Например: yarn typecheck выдает ошибку внутри библиотеки @grpc/grpc-js.'
19+
description: 'Описание проблемы'
20+
placeholder: 'Например: yarn typecheck выдаёт ошибку внутри библиотеки @grpc/grpc-js.'
2121
validations:
2222
required: true
2323
- type: textarea
2424
id: context
2525
attributes:
2626
label: 'Контекст'
2727
description: 'Дополнительная информация, которая поможет погрузиться в проблему'
28-
placeholder: 'Проблема уже встречалась на проекте <референс на проект>, решали ее так: <...>. Сейчас проблема появилась вновь, и прошлое решение не работает. Или проблема уже обсуждалась ранее с `@SomeGuy` (никнейм на GitHub), пришли к тому-то, тому-то.'
28+
placeholder: 'Возможно подобная проблема уже решалась где-то в соседних репах. Укажи ник человека, который может знать что-либо или укажи ссылку на тикет.'
2929
- type: textarea
3030
id: reproduce
3131
attributes:
3232
label: 'Воспроизведение'
3333
description: 'Шаги для воспроизведения проблемы'
3434
placeholder: |
35-
1. Идём туда-то **package/name/src/main.js:561**
36-
2. Выполнить команду или что-то запустить
37-
3. Видим то-то и то-то
35+
1. Идём туда-то
36+
2. Выполняем что-то
37+
3. Видим то-то
3838
validations:
3939
required: true
4040
- type: textarea

.github/ISSUE_TEMPLATE/task.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Task
2+
description: Шаблон задачи
3+
assignees:
4+
- TorinAsakura
5+
body:
6+
- type: input
7+
id: motivation
8+
attributes:
9+
label: С чем связан запрос на фичу?
10+
placeholder: Задайте себе вопрос - что привело меня к созданию этой задачи?
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: solution
15+
attributes:
16+
label: Расскажите как вы это себе видите
17+
placeholder: Задайте себе вопрос - как бы я это сделал? А затем распишите это в виде списка
18+
validations:
19+
required: true
20+
- type: input
21+
id: dod
22+
attributes:
23+
label: Definition of done (критерий готовности)
24+
placeholder: Задайте себе вопрос - что нужно сделать для того чтобы задача была выполнена?
25+
validations:
26+
required: true
27+
- type: textarea
28+
id: examples
29+
attributes:
30+
label: Приложите пример реализаций
31+
placeholder: Просто оставьте ссылку на репу, статью, gist, любой другой источник откуда почерпнули идею
32+
- type: textarea
33+
id: materials
34+
attributes:
35+
label: Приложите материалы задачи
36+
placeholder: Приложите ссылку на figma документ или на Google Document в котором имеются данные по задаче

.github/workflows/checks.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99

1010
steps:
1111
- name: Checkout
12-
uses: actions/checkout@v2
12+
uses: actions/checkout@v3
1313

1414
- name: Setup Node.js
15-
uses: actions/setup-node@v2
15+
uses: actions/setup-node@v3
1616
with:
17-
node-version: '16.13'
17+
node-version: '18.13'
1818

1919
- name: Install
2020
run: yarn install

.github/workflows/publish.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
with:
1515
ref: master
1616

1717
- name: Setup Node
18-
uses: actions/setup-node@v2
18+
uses: actions/setup-node@v3
1919
with:
20-
node-version: '16.13'
20+
node-version: '18.13'
2121

2222
- name: Install
2323
run: yarn install
@@ -30,11 +30,11 @@ jobs:
3030
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
3131

3232
- name: Commit changes
33-
uses: EndBug/add-and-commit@v7
33+
uses: EndBug/add-and-commit@v9
3434
env:
3535
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
3636
with:
37-
author_name: github-actions
38-
author_email: 41898282+github-actions[bot]@users.noreply.github.com
37+
author_name: Atls Github Bot
38+
author_email: github-bot@atls.team
3939
message: 'chore(common): publish'
4040
branch: master

.github/workflows/version.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3
1717
with:
1818
ref: master
1919

2020
- name: Setup Node
21-
uses: actions/setup-node@v2
21+
uses: actions/setup-node@v3
2222
with:
23-
node-version: '16.13'
23+
node-version: '18.13'
2424

2525
- name: Install
2626
run: yarn install
@@ -33,11 +33,11 @@ jobs:
3333
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
3434

3535
- name: Commit changes
36-
uses: EndBug/add-and-commit@v7
36+
uses: EndBug/add-and-commit@v9
3737
env:
3838
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
3939
with:
40-
author_name: github-actions
41-
author_email: 41898282+github-actions[bot]@users.noreply.github.com
40+
author_name: Atls Github Bot
41+
author_email: github-bot@atls.team
4242
message: 'chore(common): versions'
4343
branch: master

0 commit comments

Comments
 (0)