Skip to content

Commit

Permalink
feat(code): удаление переменной конфигурации отвечающей за цвет
Browse files Browse the repository at this point in the history
  • Loading branch information
shlyaiger committed Jul 24, 2023
1 parent 1333249 commit c5550aa
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ on:
- master

permissions:
contents: read # for checkout
contents: read

jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down
12 changes: 9 additions & 3 deletions MANUAL.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
3. [Подключение и установка "Commitizen" ](#chapter3)
4. [Добавление пакета "semantic-release" и его настройка](#chapter4)
5. [Начинаем использование "Evrika Standarts"](#chapter5)
6. [Часто задаваемые вопросы и ответы на них](#charter6)


## Шаг 1 : Установка nvm, и с помощью него Node.js <a name="chapter1"></a>

Expand Down Expand Up @@ -190,5 +188,13 @@ __4.Добавление скрипта для выполнения версио

## Шаг 5 : Начинаем использование "Evrika Standarts" <a name="chapter5"></a>

__1. Создание commit :__

Для создания сообщения о фиксации более не требуется использовать команду __git commit__ вместо этого выполните следующую команду :

```sh
git cz
```
После чего перед вами откроется интерактивная CLI для упрощенного процесса создания сообщения о фиксации.Следуйте инструкциям и подсказкам и вы сможете создать осмысленное сообщение о фиксации : )

## Часто задаваемые вопросы и ответы на них <a name="chapter6"></a>
__2.Автоматическое версионирование проекта,выпуск releases, генерация releases-notes :__
1 change: 0 additions & 1 deletion src/commitizen_customize/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ module.exports = {
subjectLimit: 120,
useEmoji: false,
emojiAlign: 'center',
themeColorCode:"38;2;255;100;0",
markBreakingChangeMode: false,
breaklineNumber: 100,
breaklineChar: '|',
Expand Down

0 comments on commit c5550aa

Please sign in to comment.