mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-08 06:15:40 +00:00
To avoid adding typos to the code base. Follow up to #3057. Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
20 lines
453 B
YAML
20 lines
453 B
YAML
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:
|
|
skip: .git,*.png,*.jpg,*.woff,*.ttf,*.gif,*.ico
|
|
ignore_words_list: iam,aks,ist,bridget,ue
|
|
check_filenames: true
|
|
check_hidden: true
|