diff options
author | chaesngmin <[email protected]> | 2021-09-29 22:44:35 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2021-09-30 07:44:35 +0200 |
commit | 346925fcdcc122702270ca678b5dd1e68820aa00 (patch) | |
tree | 2654e8f523060265331648fe5e8287c99383d462 /.pre-commit-config.yaml | |
parent | 35d5615ecc2366ec5de4ce0fecd75fb426216ea0 (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.yaml | 6 |
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] |