Skip to content

Commit

Permalink
codespell: add GH Action for checking spelling issues
Browse files Browse the repository at this point in the history
After fixing all spelling issues in prometheus-community#892, this will prevent us for
adding new ones.

Signed-off-by: Mario Trangoni <[email protected]>
  • Loading branch information
mjtrangoni committed Dec 29, 2021
1 parent 4b9b9e9 commit c08a101
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# GitHub Action to automate the identification of common misspellings in text files.
# https://github.com/codespell-project/actions-codespell
# https://github.com/codespell-project/codespell
name: codespell
on: [push, pull_request]
jobs:
codespell:
name: Check for spelling errors
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: codespell-project/actions-codespell@master
with:
check_filenames: true
# When using this Action in other repos, the --skip option below can be removed
skip: ./.git
ignore_words_list: calle

0 comments on commit c08a101

Please sign in to comment.