doc (contrib): add commit type deps

This commit is contained in:
librelois 2021-04-22 19:33:43 +02:00
parent 94b8e241c2
commit 7c1f8e5887
3 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
# Vim swap files # vim swap files
*~ *~
*.swp *.swp
*.swo *.swo

View file

@ -22,7 +22,6 @@ tests:
stage: tests stage: tests
script: script:
- cargo test --all --all-features - cargo test --all --all-features
coverage: '/<coverage>(\d+.\d+\%)<\/coverage>/'
fmt_and_clippy: fmt_and_clippy:
extends: .env extends: .env

View file

@ -48,6 +48,7 @@ Must be one of the following:
* **build**: Changes that affect the build system or external dependencies (example scopes: crypto, wot) * **build**: Changes that affect the build system or external dependencies (example scopes: crypto, wot)
* **chore**: Modification of the repository architecture * **chore**: Modification of the repository architecture
* **ci**: Changes to our CI configuration files and scripts (example scopes: Github Actions, Gitlab CI) * **ci**: Changes to our CI configuration files and scripts (example scopes: Github Actions, Gitlab CI)
* **deps**: Dependencies change
* **docs**: Documentation only changes * **docs**: Documentation only changes
* **feat**: Add a new feature * **feat**: Add a new feature
* **mod**: Modify an existing feature * **mod**: Modify an existing feature