summaryrefslogtreecommitdiff
path: root/.pre-commit-config.yaml
diff options
context:
space:
mode:
authorchaesngmin <[email protected]>2021-09-29 22:44:35 -0700
committerGitHub <[email protected]>2021-09-30 07:44:35 +0200
commit346925fcdcc122702270ca678b5dd1e68820aa00 (patch)
tree2654e8f523060265331648fe5e8287c99383d462 /.pre-commit-config.yaml
parent35d5615ecc2366ec5de4ce0fecd75fb426216ea0 (diff)
feat: add commitlint CI (#1459)
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to '.pre-commit-config.yaml')
-rw-r--r--.pre-commit-config.yaml6
1 files changed, 6 insertions, 0 deletions
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
index 38ce72dc..2c4921ec 100644
--- a/.pre-commit-config.yaml
+++ b/.pre-commit-config.yaml
@@ -26,3 +26,9 @@ repos:
entry: luacheck
types: [lua]
args: [.]
+ - id: commitlint
+ name: commitlint
+ language: system
+ entry: bash
+ args: [./utils/ci/run_commitlint.sh]
+ stages: [commit-msg]