8000 Missing PATH variable to run the formatter action (#7) · candrayasa/Algorithms-scripts@d6eba75 · GitHub
[go: up one dir, main page]

Skip to content

Commit d6eba75

Browse files
Missing PATH variable to run the formatter action (TheAlgorithms#7)
* action for filename formatter * Rename some file.cpp to SOME FILE.cpp * fix review comments * update name * Update test/SOME FILE.cpp Co-authored-by: David Leal <halfpacho@gmail.com> * chore: apply suggestions from code review * Apply suggestions from code review Co-authored-by: David Leal <halfpacho@gmail.com> * chore: apply suggestions from code review * fix missing action path Co-authored-by: David Leal <halfpacho@gmail.com>
1 parent dee3bce commit d6eba75

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

formatter/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ inputs:
1515
runs:
1616
using: composite
1717
steps:
18+
- run: echo "${{ github.action_path }}" >> $GITHUB_PATH
19+
shell: bash
1820
- name: Running the formatter
1921
shell: bash
2022
run: |
21-
./filename_formatter.sh ${{ inputs.working-directory }} ${{ inputs.filetypes }} ${{ inputs.ignore-files }}
23+
filename_formatter.sh ${{ inputs.working-directory }} ${{ inputs.filetypes }} ${{ inputs.ignore-files }}

0 commit comments

Comments
 (0)
0