Skip to content

Commit b4c01e2

Browse files
authored
Remove tj-actions/changed-files
1 parent d8d7727 commit b4c01e2

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
@@ -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

0 commit comments

Comments
 (0)