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 /.github/workflows/commitlint.yml | |
parent | 35d5615ecc2366ec5de4ce0fecd75fb426216ea0 (diff) |
feat: add commitlint CI (#1459)
Co-authored-by: kylo252 <[email protected]>
Diffstat (limited to '.github/workflows/commitlint.yml')
-rw-r--r-- | .github/workflows/commitlint.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml new file mode 100644 index 00000000..93c776e3 --- /dev/null +++ b/.github/workflows/commitlint.yml @@ -0,0 +1,15 @@ +name: "Commit Linter" +on: pull_request +jobs: + lint-commits: + runs-on: ubuntu-latest + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - uses: actions/[email protected] + with: + fetch-depth: 0 + - uses: wagoid/commitlint-github-action@v4 + with: + configFile: .github/workflows/commitlint.config.js + helpURL: https://github.com/LunarVim/LunarVim/blob/rolling/CONTRIBUTING.md#commit-messages |