Files
velero/.github/workflows/pr-codespell.yml
Mateusz Gozdek 9acd4ac4d5 .github/workflows: add PR codespell workflow (#3064)
To avoid adding typos to the code base.

Follow up to #3057.

Signed-off-by: Mateusz Gozdek <mgozdekof@gmail.com>
2020-11-10 12:43:32 -08:00

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