From 7ce12f56c0b9ede021932ea273bce97830c70d32 Mon Sep 17 00:00:00 2001 From: Adam Daley Date: Mon, 27 Nov 2023 01:55:22 +0000 Subject: [PATCH] Update spellcheck.yml --- .github/workflows/spellcheck.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/spellcheck.yml b/.github/workflows/spellcheck.yml index e0e4ccd..a52f7f3 100644 --- a/.github/workflows/spellcheck.yml +++ b/.github/workflows/spellcheck.yml @@ -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 @@ -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 }} \ No newline at end of file + incremental_files_only: ${{ inputs.incremental_only }} \ No newline at end of file