diff options
author | James McCoy <jamessan@jamessan.com> | 2022-02-06 09:28:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-06 09:28:24 -0500 |
commit | 2ff4726faecd4243c7a94ae5dd23bf17fa1f14e9 (patch) | |
tree | 2bc4ad66080cc9d88747a13334d8667379a26095 | |
parent | 8215c05945054755b2c3cadae198894372dbfe0f (diff) | |
parent | 707cc1a167ff482a0846c9d7b85d2525d2743479 (diff) | |
download | rneovim-2ff4726faecd4243c7a94ae5dd23bf17fa1f14e9.tar.gz rneovim-2ff4726faecd4243c7a94ae5dd23bf17fa1f14e9.tar.bz2 rneovim-2ff4726faecd4243c7a94ae5dd23bf17fa1f14e9.zip |
Merge pull request #17310 from jamessan/commitlint
ci(commitlint): use lintcommit.lua from main repo
-rw-r--r-- | .github/workflows/commitlint.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index 5044b7dcab..f190981322 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -13,7 +13,9 @@ jobs: with: fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha }} + path: pr_nvim - uses: rhysd/action-setup-vim@v1 with: neovim: true - - run: nvim --clean -es +"lua require('scripts.lintcommit').main({trace=true})" + - run: wget https://raw.githubusercontent.com/neovim/neovim/master/scripts/lintcommit.lua + - run: nvim --clean -es +"cd pr_nvim" +"lua dofile('../lintcommit.lua').main({trace=true})" |