ceph-csi/.github/workflows/codespell.yaml
Prasanna Kumar Kalever ebe4e1f944 ci: ignore spell check for design proposal images
To avoid failures triggered by checking SVG image formats.

Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
2021-07-28 11:54:59 +05:30

23 lines
630 B
YAML

---
# 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@v2
- name: codespell
uses: codespell-project/actions-codespell@master
with:
skip: .git,./vendor,./docs/design/proposals/images
check_filenames: true
ignore_words_list: ExtraVersion,extraversion,ba
check_hidden: true