-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: publish configs, issue templates
- Loading branch information
Showing
8 changed files
with
130 additions
and
10 deletions.
There are no files selected for viewing
File renamed without changes.
File renamed without changes.
7 changes: 4 additions & 3 deletions
7
.github/workflows/ISSUE_TEMPLATE/config.yml → .github/ISSUE_TEMPLATE/config.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,11 @@ | ||
blank_issues_enabled: true | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Конвенция | ||
url: https://github.com/atls/convention | ||
about: О процессах и не только | ||
- name: Telegram | ||
url: https://t.me/atls_lab | ||
about: Складируем полезные статьи | ||
- name: Discord | ||
url: https://discord.gg/jmgjzSKgNg | ||
- name: Сайт | ||
url: https://atls.team | ||
about: Сайт команды |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 в котором имеются данные по задаче |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: Publish | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
run: | ||
name: Publish | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.13' | ||
|
||
- name: Install | ||
run: yarn install | ||
|
||
- name: Npm Publish | ||
run: | | ||
yarn version apply --all | ||
yarn workspaces changed foreach --verbose --topological --no-private npm publish --access public | ||
env: | ||
YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Commit changes | ||
uses: EndBug/add-and-commit@v9 | ||
env: | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
with: | ||
author_name: Atls Github Bot | ||
author_email: [email protected] | ||
message: 'chore(common): publish' | ||
branch: master |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: Version | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
branches: | ||
- master | ||
|
||
jobs: | ||
run: | ||
name: Version | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: master | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18.13' | ||
|
||
- name: Install | ||
run: yarn install | ||
env: | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
|
||
- name: Version | ||
run: yarn workspaces changed foreach --no-private --verbose version patch --deferred | ||
env: | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
|
||
- name: Commit changes | ||
uses: EndBug/add-and-commit@v9 | ||
env: | ||
GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' | ||
with: | ||
author_name: Atls Github Bot | ||
author_email: [email protected] | ||
message: 'chore(common): versions' | ||
branch: master |