Syncing latest changes from main for kubernetes-csi-addons #132
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# codespell is a GitHub Actions that runs codespell tool to catch misspell | |
# Reference https://github.com/codespell-project/actions-codespell | |
name: Codespell | |
# yamllint disable-line rule:truthy | |
on: | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
codespell: | |
name: codespell | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: codespell | |
uses: codespell-project/actions-codespell@master | |
with: | |
skip: .git,go.mod,go.sum,vendor | |
# kubebuilder latest release has a label with name kuberentes | |
# TODO: remove this in next kubebuilder update as this is fixed | |
# in kubebuilder master | |
# https://github.com/kubernetes-sigs/kubebuilder/pull/2964 | |
ignore_words_list: kuberentes | |
check_filenames: true | |
check_hidden: true |