Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
22 lines (17 loc) · 490 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 490 Bytes

git-spell-check

Run a spell checker only on changed lines in pull requests.

Features

  • Only checks added/modified lines
  • Ignore custom words
  • Works with any spell checker (default: aspell)
  • Uses GitHub annotations for inline results

Usage

- uses: compiler-research/git-spell-check@v1
  with:
    base_branch: origin/master
    include: '["**/*.md"]'
    exclude: '["CHANGELOG.md"]'
    cmd: "aspell list"
    dictionary: "Compiler-Research GitHub Actions"