mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-05 04:55:22 +00:00
.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>
This commit is contained in:
19
.github/workflows/pr-codespell.yml
vendored
Normal file
19
.github/workflows/pr-codespell.yml
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
1
changelogs/unreleased/3064-invidian
Normal file
1
changelogs/unreleased/3064-invidian
Normal file
@@ -0,0 +1 @@
|
||||
Added GitHub Workflow running Codespell for spell checking
|
||||
Reference in New Issue
Block a user