mirror of
https://github.com/logos-messaging/specs.git
synced 2026-01-02 06:03:08 +00:00
29 lines
635 B
YAML
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
|