From 23a7611037c6ad34a6a969da9dc1fb3b47d1eb36 Mon Sep 17 00:00:00 2001 From: Sebastian Spier Date: Fri, 1 Dec 2023 22:08:30 +0100 Subject: [PATCH] Ignore all templates for now --- .github/workflows/i18n-consistency-checker.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/i18n-consistency-checker.yaml b/.github/workflows/i18n-consistency-checker.yaml index 493622976..1caec622d 100644 --- a/.github/workflows/i18n-consistency-checker.yaml +++ b/.github/workflows/i18n-consistency-checker.yaml @@ -30,6 +30,7 @@ jobs: for file in $(find patterns/{2-structured,3-validated} -name '*.md'); do echo "Original file: $file" [[ $file =~ "3-validated" ]] && continue # if the file is under 3-validated, skip (one liner) - 2023/08/26 + [[ $file =~ "/templates" ]] && continue # if the file is under /templates, skip. consistency check does not work for that yet. i18n_filename=$(echo "$file" | sed -E "s_patterns/(2-structured|3-validated)(/project-setup)?_translation/${{matrix.language}}/patterns_g") echo "Translation file: $i18n_filename"