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