From 8c877f803e2c99804928cd7948737ffb958aaab1 Mon Sep 17 00:00:00 2001 From: pandabadger <33740825+pandabadger@users.noreply.github.com> Date: Sat, 16 Dec 2023 16:01:09 +0000 Subject: [PATCH] chore: skip .bin files in codespell (#18766) --- .github/workflows/misspell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml index c5fe98ec89..e0f79edf87 100644 --- a/.github/workflows/misspell.yml +++ b/.github/workflows/misspell.yml @@ -14,7 +14,7 @@ jobs: continue-on-error: true run: | sudo apt-get install codespell -y - codespell -w --skip="*.pulsar.go,*.pb.go,*.pb.gw.go,*.cosmos_orm.go,*.json,*.git,*.js,crypto/keys,fuzz,*.h,proto/tendermint" --ignore-words=.github/.codespellignore + codespell -w --skip="*.pulsar.go,*.pb.go,*.pb.gw.go,*.cosmos_orm.go,*.json,*.git,*.js,crypto/keys,fuzz,*.h,proto/tendermint,*.bin" --ignore-words=.github/.codespellignore - uses: peter-evans/create-pull-request@v5 with: token: ${{ secrets.PRBOT_PAT }}