aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-10-16 17:56:12 +0200
committerSoispha <soispha@vhack.eu>2023-10-16 17:56:12 +0200
commitc0e609b9499339136a816c3bf0e6d75f6ca72672 (patch)
treeeaaf131ed0ba964b1ac4e3891e5a1578dcd493e6
parentfix(flake): Pin nixpkgs on a rev because nvim update brakes some plugins (diff)
downloadnixos-config-c0e609b9499339136a816c3bf0e6d75f6ca72672.zip
fix(hm/soispha/conf/git/git_template): Use lowercase type names
-rw-r--r--hm/soispha/conf/git/git_template.git22
1 files changed, 11 insertions, 11 deletions
diff --git a/hm/soispha/conf/git/git_template.git b/hm/soispha/conf/git/git_template.git
index 9621698d..6af39119 100644
--- a/hm/soispha/conf/git/git_template.git
+++ b/hm/soispha/conf/git/git_template.git
@@ -13,43 +13,43 @@
# Convention Commits (https://www.conventionalcommits.org/en/v1.0.0/ or https://github.com/angular/angular/blob/85b4941be137a2fcdc664dc870e408dd72ad7de7/CONTRIBUTING.md#commit):
-# Feat: [Features] -> MINOR version bump
+# feat: [Features] -> MINOR version bump
# A new feature
#
-# Fix: [Bug Fixes] -> PATCH version bump
+# fix: [Bug Fixes] -> PATCH version bump
# A bug fix
#
# append '!' after the type/scope: [Breaking Change] -> MAJOR version bump
# A breaking API change
#
-# Docs: [Documentation]
+# docs: [Documentation]
# Documentation only changes
#
-# Style: [Styles]
+# style: [Styles]
# Changes that do not affect the meaning of the code
# (white-space, formatting, missing semi-colons, etc)
#
-# Refactor: [Code Refactoring]
+# refactor: [Code Refactoring]
# A code change that neither fixes a bug nor adds a feature
#
-# Perf: [Performance Improvements] -> PATCH version bump
+# perf: [Performance Improvements] -> PATCH version bump
# A code change that improves performance
#
-# Test: [Tests]
+# test: [Tests]
# Adding missing tests or correcting existing tests
#
-# Build: [Builds] -> PATCH version bump
+# build: [Builds] -> PATCH version bump
# Changes that affect the build system or external dependencies
# (example scopes: gulp, broccoli, npm)
#
-# Ci: [Continuous Integrations]
+# ci: [Continuous Integrations]
# Changes to our CI configuration files and scripts
# (example scopes: Travis, Circle, BrowserStack, SauceLabs)
#
-# Chore: [Chores]
+# chore: [Chores]
# Other changes that don't modify src or test files
#
-# Reverts: [Reverts]
+# reverts: [Reverts]
# Reverts a previous commit
# How to Write a Git Commit Message: