Skip to content

Commit

Permalink
Update spellcheck.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
admdly committed Nov 27, 2023
1 parent 84cdb69 commit 7ce12f5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name: Spellcheck
on:
workflow_call:
inputs:
config-path:
config_path:
description: 'Directory where cspell.json is located'
required: false
type: string
incremental-only:
incremental_only:
description: 'Limit files checked to those in pull request/push'
default: true
required: false
type: boolean
root-path:
root_path:
description: 'Directory in tree to begin spell check'
required: false
type: string
Expand All @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: streetsidesoftware/cspell-action@v5
with:
config: ${{ inputs.config-path }}
root: ${{ inputs.root-path }}
config: ${{ inputs.config_path }}
root: ${{ inputs.root_path }}
strict: ${{ inputs.strict }}
incremental_files_only: ${{ inputs.incremental-only }}
incremental_files_only: ${{ inputs.incremental_only }}

0 comments on commit 7ce12f5

Please sign in to comment.