We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9d43b1 commit af006e1Copy full SHA for af006e1
action.yml
@@ -11,9 +11,6 @@ inputs:
11
description: 'The folder containing the source files to format'
12
required: true
13
default: './'
14
- yapf-args:
15
- description: 'Additional arguments or flags for the YAPF command'
16
- required: false
17
18
runs:
19
using: 'composite'
@@ -22,5 +19,5 @@ runs:
22
run: pip install yapf
23
20
shell: bash
24
21
- id: invoke-yapf
25
- run: yapf --diff --recursive ${{ inputs.source-dir }} ${{ inputs.yapf-args }}
+ run: yapf --diff --recursive ${{ inputs.source-dir }} $*
26
0 commit comments