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 @@ -22,19 +22,13 @@ jobs:
2222 - name : Get sources
2323 uses : actions/checkout@v4
2424
25- - name : Get changed files
26- id : changed-files
27- uses : tj-actions/changed-files@v42
28- with :
29- separator : " \" \" "
30-
31- - name : Check all changed files
32- run : |
33- RESULT=''
34- for file in "${{ steps.changed-files.outputs.all_changed_files }}"; do
35- if (( ${#file} > $MAX_LENGTH )); then RESULT+="$file\n"; fi;
36- done
37- if (( ${#RESULT} )); then printf "The following filenames are longer than $MAX_LENGTH characters:\n${RESULT}" && exit 1; fi;
25+ # - name: Check all changed files
26+ # run: |
27+ # RESULT=''
28+ # for file in "${{ steps.changed-files.outputs.all_changed_files }}"; do
29+ # if (( ${#file} > $MAX_LENGTH )); then RESULT+="$file\n"; fi;
30+ # done
31+ # if (( ${#RESULT} )); then printf "The following filenames are longer than $MAX_LENGTH characters:\n${RESULT}" && exit 1; fi;
3832
3933 notify :
4034 runs-on : devextreme-shr2
You can’t perform that action at this time.
0 commit comments