Skip to content

Commit

Permalink
Fix the action config
Browse files Browse the repository at this point in the history
  • Loading branch information
vmarkovtsev committed Jun 7, 2021
1 parent d386c4a commit 3896f02
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ runs:
using: "composite"
steps:
- shell: bash
run: python3 ${{ github.action_path }}/main.py --include "${{ inputs.include }}" --include-without-comments "${{ inputs.include_without_comments }}" --exclude "${{ inputs.exclude }}"
run: |
set -x
python3 ${{ github.action_path }}/main.py --include '${{ inputs.include }}' --include-without-comments '${{ inputs.include_without_comments }}' --exclude '${{ inputs.exclude }}'
branding:
color: purple
icon: bar-chart-2

0 comments on commit 3896f02

Please sign in to comment.