Skip to content

Commit c36dd03

Browse files
authored
Remove tj-actions/changed-files
1 parent 1bbe120 commit c36dd03

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

.github/workflows/paths.yml

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)