From 54a11303b8f2ec38ec7c4d62e23bf3fedbf8d0ec Mon Sep 17 00:00:00 2001 From: Ludy87 Date: Sun, 26 Oct 2025 11:44:41 +0100 Subject: [PATCH] Update check_locales.yml --- .github/workflows/check_locales.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check_locales.yml b/.github/workflows/check_locales.yml index ed0ce629d..96e0acd2e 100644 --- a/.github/workflows/check_locales.yml +++ b/.github/workflows/check_locales.yml @@ -178,7 +178,7 @@ jobs: ref: branch, }); - referenceFilePath = "pr-branch-messages_en_GB.properties"; + referenceFilePath = "pr-branch-translation.json"; const content = Buffer.from(fileContent.content, "base64").toString("utf-8"); fs.writeFileSync(referenceFilePath, content); } else { @@ -190,7 +190,7 @@ jobs: ref: "V2", }); - referenceFilePath = "main-branch-messages_en_GB.properties"; + referenceFilePath = "main-branch-translation.json"; const content = Buffer.from(fileContent.content, "base64").toString("utf-8"); fs.writeFileSync(referenceFilePath, content); } @@ -287,6 +287,6 @@ jobs: run: | echo "Cleaning up temporary files..." rm -rf pr-branch - rm -f pr-branch-messages_en_GB.properties main-branch-messages_en_GB.properties changed_files.txt result.txt + rm -f pr-branch-translation.json main-branch-translation.json changed_files.txt result.txt echo "Cleanup complete." continue-on-error: true # Ensure cleanup runs even if previous steps fail