File tree Expand file tree Collapse file tree 1 file changed +7
-13
lines changed
Expand file tree Collapse file tree 1 file changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -24,19 +24,13 @@ jobs:
2424 - name : Get sources
2525 uses : actions/checkout@v4
2626
27- - name : Get changed files
28- id : changed-files
29- uses : tj-actions/changed-files@v42
30- with :
31- separator : " \" \" "
32-
33- - name : Check all changed files
34- run : |
35- RESULT=''
36- for file in "${{ steps.changed-files.outputs.all_changed_files }}"; do
37- if (( ${#file} > $MAX_LENGTH )); then RESULT+="$file\n"; fi;
38- done
39- if (( ${#RESULT} )); then printf "The following filenames are longer than $MAX_LENGTH characters:\n${RESULT}" && exit 1; fi;
27+ # - name: Check all changed files
28+ # run: |
29+ # RESULT=''
30+ # for file in "${{ steps.changed-files.outputs.all_changed_files }}"; do
31+ # if (( ${#file} > $MAX_LENGTH )); then RESULT+="$file\n"; fi;
32+ # done
33+ # if (( ${#RESULT} )); then printf "The following filenames are longer than $MAX_LENGTH characters:\n${RESULT}" && exit 1; fi;
4034
4135 notify :
4236 runs-on : devextreme-shr2
You can’t perform that action at this time.
0 commit comments