Skip to content

Commit

Permalink
chore: add code spell
Browse files Browse the repository at this point in the history
Signed-off-by: David Ko <dko@suse.com>
  • Loading branch information
innobead committed Dec 12, 2022
1 parent b79d7ab commit 47fa56c
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .codespellignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
aks
ec2
eks
gce
gcp
2 changes: 0 additions & 2 deletions .github/workflows/broken-link-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ on:
- cron: 0 0 * * * # run monthly
repository_dispatch: # run manually
types: [check-link]
# push:
# ...

name: Broken Link Check
jobs:
Expand Down
22 changes: 22 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Codespell

on:
push:
pull_request:
branches:
- master
- "v*.*.*"

jobs:
codespell:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Check code spell
uses: codespell-project/actions-codespell@master
with:
check_filenames: true
ignore_words_file: .codespellignore

0 comments on commit 47fa56c

Please sign in to comment.