147 |
```git-commit |
```git-commit |
148 |
deps(dev): update dev dependencies |
deps(dev): update dev dependencies |
149 |
``` |
``` |
150 |
|
3. **`merge`**: If you perform a merge, use this commit type. When using the |
151 |
|
`git merge` command, you can pass the `-m` option and a commit message as |
152 |
|
an argument. Sometimes git can choose to not perform a merge commit and instead |
153 |
|
perform a "fast-forward" merge. In that case, there will be no additional commit, |
154 |
|
and therefore the message will be ignored. In other cases when Git creates a new commit, |
155 |
|
the commit message will be used.<br /> |
156 |
|
Example:<br /> |
157 |
|
|
158 |
|
```bash |
159 |
|
git merge feature/new-permission-system -m "merge: feature/new-permission-system branch to main" |
160 |
|
``` |
161 |
|
4. **`i18n`**: This commit type is used when you add translations or make changes |
162 |
|
that affect the internationalization of the bot. |
163 |
|
|
164 |
In addition to the rules described in the original Conventional Commits |
In addition to the rules described in the original Conventional Commits |
165 |
specification, we also have the following rules: |
specification, we also have the following rules: |
219 |
|
|
220 |
We follow the an extended version of the |
We follow the an extended version of the |
221 |
[GitHub Flow](https://guides.github.com/introduction/flow/) workflow. |
[GitHub Flow](https://guides.github.com/introduction/flow/) workflow. |
222 |
Thee only main branch is `main` — this is the branch that is always |
The only main branch is `main` — this is the branch that is always |
223 |
deployed to production. Notable development works are done in feature branches, |
deployed to production. Notable development works are done in feature branches, |
224 |
which are then merged into the `main` branch via pull requests. |
which are then merged into the `main` branch via pull requests. |
225 |
If the feature or fix you're working on is small, you can commit directly to the |
If the feature or fix you're working on is small, you can commit directly to the |
240 |
2. **Bugfix Branches**: We create bugfix branches for working on a notable bug |
2. **Bugfix Branches**: We create bugfix branches for working on a notable bug |
241 |
fix or security patch. These branches are created from the `main` branch and |
fix or security patch. These branches are created from the `main` branch and |
242 |
are merged back into the `main` branch via pull requests. |
are merged back into the `main` branch via pull requests. |
243 |
These branches are prefixed by `fix/`. |
These branches are prefixed by `bugfix/`. |
244 |
|
|
245 |
3. **Feature Branches**: We create feature branches for working on new features. |
3. **Feature Branches**: We create feature branches for working on new features. |
246 |
These branches are created from the `main` branch and are merged back into |
These branches are created from the `main` branch and are merged back into |
247 |
the `main` branch via pull requests. |
the `main` branch via pull requests. |
248 |
These branches are prefixed by `feat/`. |
These branches are prefixed by `feature/`. |
249 |
|
|
250 |
## Automation of Releases and Changelog Generation |
## Automation of Releases and Changelog Generation |
251 |
|
|