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
19 lines
418 B
YAML
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/*"
|