diff options
author | James McCoy <jamessan@jamessan.com> | 2022-06-08 19:55:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-08 19:55:51 -0400 |
commit | 10291bb8541e461cd3b089bb05c1e3b3946955c5 (patch) | |
tree | acffb379f5ebd006736184194248643fa1fb938c | |
parent | 94181ad7dcb75e1e188164276696434e03302a21 (diff) | |
parent | d353d5f002bf27f7f2d1bd2e5fbe12822b6aca71 (diff) | |
download | rneovim-10291bb8541e461cd3b089bb05c1e3b3946955c5.tar.gz rneovim-10291bb8541e461cd3b089bb05c1e3b3946955c5.tar.bz2 rneovim-10291bb8541e461cd3b089bb05c1e3b3946955c5.zip |
Merge pull request #18788 from dundargoc/ci/api-docs/color
ci(api-docs): show required changes with color
-rw-r--r-- | .github/workflows/api-docs.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/.github/workflows/api-docs.yml b/.github/workflows/api-docs.yml index 52f312c75f..83554e2a3d 100644 --- a/.github/workflows/api-docs.yml +++ b/.github/workflows/api-docs.yml @@ -59,8 +59,7 @@ jobs: run: | echo "Job failed, run ./scripts/gen_vimdoc.py and commit your doc changes" echo "The doc generation produces the following changes:" - git --no-pager diff - exit 1 + git diff --color --exit-code - name: Automatic PR if: ${{ steps.docs.outputs.UPDATED_DOCS != 0 && !inputs.check_only }} |