ci: exit ci run if configure causes tr file updates

This commit is contained in:
sithlord48
2026-01-19 18:03:33 -05:00
committed by Nick Bolton
parent c63fd21c8e
commit 7641fe7549

View File

@ -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