We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9283d18 commit 14e720cCopy full SHA for 14e720c
.github/scripts/track-en-changes.sh
@@ -85,6 +85,10 @@ while read -r PR; do
85
NEW_LIST=""
86
87
while IFS= read -r FILE; do
88
+ # Skip files that should not be translated (e.g. versions.xml)
89
+ if [[ "$FILE" == */versions.xml ]]; then
90
+ continue
91
+ fi
92
if [ -f "$FILE" ]; then
93
UPDATE_LIST="${UPDATE_LIST}- \`${FILE}\`"$'\n'
94
elif [[ "$FILE" == *.xml ]]; then
0 commit comments