Skip to content

Commit 14e720c

Browse files
authored
CI: ignorer les fichiers versions.xml dans track-en-changes (#2560)
1 parent 9283d18 commit 14e720c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/scripts/track-en-changes.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ while read -r PR; do
8585
NEW_LIST=""
8686

8787
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
8892
if [ -f "$FILE" ]; then
8993
UPDATE_LIST="${UPDATE_LIST}- \`${FILE}\`"$'\n'
9094
elif [[ "$FILE" == *.xml ]]; then

0 commit comments

Comments
 (0)