Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CodeSpell workflow for spell checking in pull requests #434

Merged
merged 3 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added .codespellignore
Empty file.
15 changes: 15 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CodeSpell
on:
- pull_request
jobs:
codespell:
name: CodeSpell
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: CodeSpell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
ignore_words_file: .codespellignore
exclude_file: examples/openapi3_rails/config/storage.yml,test/data/openapi2/petstore-expanded.json
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [4.99.0.beta1] - 2023-01-24
- We add backport parameter overwrite rule [#373](https://github.com/interagent/committee/pull/373)
- We provide merged parameter for `committee.params` ( `params_key` option)
- When a same parameter name exist in path/query/request body, it overwrited.
- When a parameter of the same name exists in the path/query/request body, it will be overwritten.
- We we change overwrite rule next version.
- Please set `parameter_overwite_by_rails_rule=true` for Rails rule (v5.0.0)
- (high priority) path_hash_key -> request_body_hash -> query_param
Expand Down
Loading