Files
scylladb/.github/workflows/codespell.yaml
Kefu Chai 36e81f93d2 .git: do not apply codespell to licenses
we should keep the licenses as they are, even with misspellings.

Signed-off-by: Kefu Chai <kefu.chai@scylladb.com>

Closes scylladb/scylladb#16992
2024-01-26 09:39:27 +02:00

19 lines
445 B
YAML

name: codespell
on:
pull_request:
branches:
- master
- enterprise
permissions: {}
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: codespell-project/actions-codespell@master
with:
only_warn: 1
ignore_words_list: "ser,ue,crate"
skip: "./.git,./build,./tools,*.js,*.thrift,*.lock,./test,./licenses"