2020-11-10 20:43:32 +00:00
|
|
|
name: Pull Request Codespell Check
|
|
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
codespell:
|
|
|
|
name: Run Codespell
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
|
|
|
|
- name: Check out the code
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Codespell
|
|
|
|
uses: codespell-project/actions-codespell@master
|
|
|
|
with:
|
2020-12-10 23:17:16 +00:00
|
|
|
# ignore the config/.../crd.go file as it's generated binary data that is edited elswhere.
|
2022-08-18 10:17:39 +00:00
|
|
|
skip: .git,*.png,*.jpg,*.woff,*.ttf,*.gif,*.ico,./config/crd/v1beta1/crds/crds.go,./config/crd/v1/crds/crds.go,./go.sum,./LICENSE
|
2022-10-17 05:42:09 +00:00
|
|
|
ignore_words_list: iam,aks,ist,bridget,ue,shouldnot
|
2020-11-10 20:43:32 +00:00
|
|
|
check_filenames: true
|
|
|
|
check_hidden: true
|