From 7641fe7549ebe34710f1ada8abdf571c498db468 Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Mon, 19 Jan 2026 18:03:33 -0500 Subject: [PATCH] ci: exit ci run if configure causes tr file updates --- .github/workflows/continuous-integration.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index f7fc9b020..b63dbce64 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -277,6 +277,14 @@ jobs: cd .. fi + - name: Check for unexpected repo changes + shell: bash + run: | + if [[ `git status --porcelain` ]]; then + echo "Unexpected changes to the repo, Often caused by forgetting to commit the updated translation files" + exit 1 + fi + - name: Tests uses: ./.github/actions/run-tests timeout-minutes: 2