Skip to content

Commit 533ca64

Browse files
committed
fix: pass inputs as strings
1 parent 18f7429 commit 533ca64

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

action.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -392,27 +392,27 @@ runs:
392392
$env.UV_CACHE_DIR = $env.RUNNER_TEMP | path join 'cpp-linter-action-cache'
393393
394394
let args = [
395-
--style="${{ inputs.style }}"
396-
--extensions=${{ inputs.extensions }}
397-
--tidy-checks="${{ inputs.tidy-checks }}"
398-
--repo-root=${{ inputs.repo-root }}
399-
--version=${{ inputs.version }}
400-
--verbosity=${{ inputs.verbosity }}
401-
--lines-changed-only=${{ inputs.lines-changed-only }}
402-
--files-changed-only=${{ inputs.files-changed-only }}
403-
--thread-comments=${{ inputs.thread-comments }}
404-
--no-lgtm=${{ inputs.no-lgtm }}
405-
--step-summary=${{ inputs.step-summary }}
406-
--ignore="${{ inputs.ignore }}"
407-
--ignore-tidy="${{ inputs.ignore-tidy }}"
408-
--ignore-format="${{ inputs.ignore-format }}"
409-
--database=${{ inputs.database }}
410-
--file-annotations=${{ inputs.file-annotations }}
411-
--extra-arg="${{ inputs.extra-args }}"
412-
--tidy-review="${{ inputs.tidy-review }}"
413-
--format-review="${{ inputs.format-review }}"
414-
--passive-reviews="${{ inputs.passive-reviews }}"
415-
--jobs=${{ inputs.jobs }}
395+
'--style="${{ inputs.style }}"'
396+
'--extensions=${{ inputs.extensions }}'
397+
'--tidy-checks="${{ inputs.tidy-checks }}"'
398+
'--repo-root=${{ inputs.repo-root }}'
399+
'--version=${{ inputs.version }}'
400+
'--verbosity=${{ inputs.verbosity }}'
401+
'--lines-changed-only=${{ inputs.lines-changed-only }}'
402+
'--files-changed-only=${{ inputs.files-changed-only }}'
403+
'--thread-comments=${{ inputs.thread-comments }}'
404+
'--no-lgtm=${{ inputs.no-lgtm }}'
405+
'--step-summary=${{ inputs.step-summary }}'
406+
'--ignore="${{ inputs.ignore }}"'
407+
'--ignore-tidy="${{ inputs.ignore-tidy }}"'
408+
'--ignore-format="${{ inputs.ignore-format }}"'
409+
'--database=${{ inputs.database }}'
410+
'--file-annotations=${{ inputs.file-annotations }}'
411+
'--extra-arg="${{ inputs.extra-args }}"'
412+
'--tidy-review="${{ inputs.tidy-review }}"'
413+
'--format-review="${{ inputs.format-review }}"'
414+
'--passive-reviews="${{ inputs.passive-reviews }}"'
415+
'--jobs=${{ inputs.jobs }}'
416416
]
417417
mut uv_args = [run --no-sync --project $action_path --directory (pwd)]
418418

0 commit comments

Comments
 (0)