From d386c4afaecec370c1ef8a74e527af68621fed81 Mon Sep 17 00:00:00 2001 From: Vadim Markovtsev Date: Mon, 7 Jun 2021 20:37:40 +0200 Subject: [PATCH] Fix the action config --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index b94b747..451ad17 100644 --- a/action.yml +++ b/action.yml @@ -18,7 +18,7 @@ runs: using: "composite" steps: - shell: bash - run: python3 main.py --include "${{ inputs.include }}" --include-without-comments "${{ inputs.include_without_comments }}" --exclude "${{ inputs.exclude }}" + run: 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 \ No newline at end of file