specs/.github/workflows/spelling-incremental.yml
Jazz Turner-Baggs af75a3c590
Incremental spellcheck action (#55)
* chore: add incremental spellcheck

* chore: upgrade repo wide spellcheck
2025-02-27 06:59:38 -08:00

29 lines
635 B
YAML

name: Spellcheck(Incremental)
on:
pull_request:
branches:
- '**'
workflow_dispatch:
jobs:
spelling:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get all changed markdown files
uses: tj-actions/changed-files@v45
id: changed_files
with:
files: |
**.md
- name: Run Spellcheck
id: spellcheck
uses: rojopolis/spellcheck-github-actions@v0
with:
task_name: Markdown
source_files: ${{ steps.changed_files.outputs.all_changed_files }}
config_path: .spellcheck.yml