Skip to content

Commit

Permalink
add ignored words.
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrisJim committed Dec 18, 2024
1 parent a888f93 commit c5607eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/.codespellignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
clientA
connectionA
4 changes: 2 additions & 2 deletions .github/workflows/spell-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
continue-on-error: true
run: |
sudo apt-get install codespell -y
codespell -w --skip="*.pb.go,*.pb.gw.go,*.json,*.git,*.js,*.h,*.bin,go.sum,go.mod,.github"
codespell -w --skip="*.pb.go,*.pb.gw.go,*.json,*.git,*.js,*.h,*.bin,go.sum,go.mod,.github" --ignore-words=.github/.codespellignore
- uses: peter-evans/create-pull-request@v7
if: github.event_name != 'pull_request'
with:
Expand All @@ -30,4 +30,4 @@ jobs:
body: |
This PR fixes typos in the codebase.
Please review it, and merge if everything is fine.
If there are proto changes, run `make proto-all` and commit the changes.
If there are proto changes, run `make proto-all` and commit the changes.

0 comments on commit c5607eb

Please sign in to comment.