We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ff08d1 commit 6db7ba1Copy full SHA for 6db7ba1
.github/workflows/validate-translations.yml
@@ -30,7 +30,7 @@ jobs:
30
changed_files=$(git diff --name-only $BASE_COMMIT $HEAD_COMMIT | grep 'assets/translations')
31
if [ -n "$changed_files" ]; then
32
for file in $changed_files; do
33
- folder_path=$(dirname "$file")
+ folder_path=$(echo "$file" | sed 's|\(.*assets/translations\).*|\1|')
34
echo "Changes detected in $folder_path"
35
sh ./ci-scripts/validate-translations.sh "$folder_path"
36
done
0 commit comments