We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 661d6e7 + b4e4870 commit 92a4e4aCopy full SHA for 92a4e4a
action.yml
@@ -29,9 +29,13 @@ runs:
29
using: 'docker'
30
image: 'Dockerfile'
31
args:
32
- - --clang-format-executable /clang-format/clang-format${{ inputs.clangFormatVersion }}
+ - --clang-format-executable
33
+ - /clang-format/clang-format${{ inputs.clangFormatVersion }}
34
- -r
- - --style ${{ inputs.style }}
35
- - --extensions ${{ inputs.extensions }}
36
- - --exclude ${{ inputs.exclude }}
+ - --style
+ - ${{ inputs.style }}
37
+ - --extensions
38
+ - ${{ inputs.extensions }}
39
+ - --exclude
40
+ - ${{ inputs.exclude }}
41
- ${{ inputs.source }}
entrypoint.sh
@@ -2,4 +2,4 @@
2
3
cd "$GITHUB_WORKSPACE"
4
5
-/run-clang-format.py $*
+/run-clang-format.py "$@"
0 commit comments