diff options
| author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-04-22 17:37:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-22 17:37:45 +0200 |
| commit | ccce200cde296aa65a720e028a5eacf715f29e4f (patch) | |
| tree | 817adf075fc15732a6e122b4dbc03035aa4e5c1e /.github/workflows | |
| parent | 732cb9e1e0a90f40d9189bffe009bbb7f8456eeb (diff) | |
| download | rneovim-ccce200cde296aa65a720e028a5eacf715f29e4f.tar.gz rneovim-ccce200cde296aa65a720e028a5eacf715f29e4f.tar.bz2 rneovim-ccce200cde296aa65a720e028a5eacf715f29e4f.zip | |
ci(lintcommit): fix error output
Using print() alone doesn't work properly, toggling the verbose option
is still required.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/lintcommit.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/lintcommit.yml b/.github/workflows/lintcommit.yml index 71a7ad1462..0bd92c05ec 100644 --- a/.github/workflows/lintcommit.yml +++ b/.github/workflows/lintcommit.yml @@ -16,4 +16,4 @@ jobs: - uses: rhysd/action-setup-vim@v1 with: neovim: true - - run: nvim --clean -l scripts/lintcommit.lua main --notrace + - run: nvim --clean -l scripts/lintcommit.lua main |