Files
scylladb/.github/workflows/codespell.yaml
Kefu Chai fa3efe6166 .git: use ssh/key or token for auth
enable checkout action to get authenticated if the action need to
clone a non-public repo.

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

Closes scylladb/scylladb#16421
2023-12-15 11:34:50 +02:00

19 lines
418 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"
skip: "./.git,build/*,tools/*,*.js,*.thrift,test/*"