Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: upgrade environment #12

Merged
merged 1 commit into from
Aug 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/ISSUE_TEMPLATE/bug.yaml

This file was deleted.

39 changes: 0 additions & 39 deletions .github/ISSUE_TEMPLATE/chore.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ contact_links:
- name: Telegram
url: https://t.me/atls_lab
about: Складируем полезные статьи
- name: Discord
url: https://discord.gg/jmgjzSKgNg
- name: Сайт
url: https://atls.team
about: Сайт команды
37 changes: 0 additions & 37 deletions .github/ISSUE_TEMPLATE/feature.yaml

This file was deleted.

14 changes: 7 additions & 7 deletions .github/ISSUE_TEMPLATE/help-wanted.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ body:
- type: input
id: scope
attributes:
label: 'Скоуп'
label: 'Область'
description: 'Область, в которой возникла проблема'
placeholder: 'Например: Логика фильтрации элементов.'
validations:
Expand All @@ -16,25 +16,25 @@ body:
id: description
attributes:
label: 'Описание'
description: 'Обобщенное описание проблемы'
placeholder: 'Например: yarn typecheck выдает ошибку внутри библиотеки @grpc/grpc-js.'
description: 'Описание проблемы'
placeholder: 'Например: yarn typecheck выдаёт ошибку внутри библиотеки @grpc/grpc-js.'
validations:
required: true
- type: textarea
id: context
attributes:
label: 'Контекст'
description: 'Дополнительная информация, которая поможет погрузиться в проблему'
placeholder: 'Проблема уже встречалась на проекте <референс на проект>, решали ее так: <...>. Сейчас проблема появилась вновь, и прошлое решение не работает. Или проблема уже обсуждалась ранее с `@SomeGuy` (никнейм на GitHub), пришли к тому-то, тому-то.'
placeholder: 'Возможно подобная проблема уже решалась где-то в соседних репах. Укажи ник человека, который может знать что-либо или укажи ссылку на тикет.'
- type: textarea
id: reproduce
attributes:
label: 'Воспроизведение'
description: 'Шаги для воспроизведения проблемы'
placeholder: |
1. Идём туда-то **package/name/src/main.js:561**
2. Выполнить команду или что-то запустить
3. Видим то-то и то-то
1. Идём туда-то
2. Выполняем что-то
3. Видим то-то
validations:
required: true
- type: textarea
Expand Down
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/task.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Task
description: Шаблон задачи
assignees:
- TorinAsakura
body:
- type: input
id: motivation
attributes:
label: С чем связан запрос на фичу?
placeholder: Задайте себе вопрос - что привело меня к созданию этой задачи?
validations:
required: true
- type: textarea
id: solution
attributes:
label: Расскажите как вы это себе видите
placeholder: Задайте себе вопрос - как бы я это сделал? А затем распишите это в виде списка
validations:
required: true
- type: input
id: dod
attributes:
label: Definition of done (критерий готовности)
placeholder: Задайте себе вопрос - что нужно сделать для того чтобы задача была выполнена?
validations:
required: true
- type: textarea
id: examples
attributes:
label: Приложите пример реализаций
placeholder: Просто оставьте ссылку на репу, статью, gist, любой другой источник откуда почерпнули идею
- type: textarea
id: materials
attributes:
label: Приложите материалы задачи
placeholder: Приложите ссылку на figma документ или на Google Document в котором имеются данные по задаче
6 changes: 3 additions & 3 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Setup Node.js
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13'
node-version: '18.13'

- name: Install
run: yarn install
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: master

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13'
node-version: '18.13'

- name: Install
run: yarn install
Expand All @@ -30,11 +30,11 @@ jobs:
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Commit changes
uses: EndBug/add-and-commit@v7
uses: EndBug/add-and-commit@v9
env:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'
with:
author_name: github-actions
author_email: 41898282+github-actions[bot]@users.noreply.github.com
author_name: Atls Github Bot
author_email: github-bot@atls.team
message: 'chore(common): publish'
branch: master
12 changes: 6 additions & 6 deletions .github/workflows/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: master

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: '16.13'
node-version: '18.13'

- name: Install
run: yarn install
Expand All @@ -33,11 +33,11 @@ jobs:
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}'

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