neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 1dc984eaabca97fa59c64e5c4588e98301da6cd6
parent b1faf5f0b92356c5abb434cbb978c1db34f89c4a
Author: Lewis Russell <lewis6991@gmail.com>
Date:   Sun, 14 Aug 2022 13:49:10 +0100

ci(lint): generate PR suggestions from uncrustify

Diffstat:
M.github/workflows/ci.yml | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml @@ -119,6 +119,18 @@ jobs: name: uncrustify run: | ${{ env.CACHE_UNCRUSTIFY }} -c ./src/uncrustify.cfg -q --replace --no-backup $(find ./src/nvim -name "*.[ch]") + + - if: "!cancelled()" + name: suggester / uncrustify + uses: reviewdog/action-suggester@v1 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + tool_name: uncrustify + cleanup: false + + - if: "!cancelled()" + name: check uncrustify + run: | git diff --color --exit-code - if: "!cancelled()"