Adjust default behavior of "migrate" command (#12320)

* Adjust default behavior of "migrate" command

- Does not create new migration files automatically

* Add dummy field - ensure detected by CI

* Revert "Add dummy field - ensure detected by CI"

This reverts commit e7a101fe87.

* Fix typo

* Adjust contributing docs

* Add CHANGELOG entry
This commit is contained in:
Oliver
2026-07-09 20:41:56 +10:00
committed by GitHub
parent d041e251d2
commit 996dbc5aa8
6 changed files with 16 additions and 8 deletions
+3 -1
View File
@@ -46,4 +46,6 @@ jobs:
run: |
python ./.github/scripts/check_source_strings.py --frontend --backend
- name: Check Migration Files
run: python3 .github/scripts/check_migration_files.py
run: |
invoke migrate --detect
python3 .github/scripts/check_migration_files.py
+3 -1
View File
@@ -405,7 +405,9 @@ jobs:
- name: Test Translations
run: invoke dev.translate
- name: Check Migration Files
run: python3 .github/scripts/check_migration_files.py
run: |
invoke migrate --detect
python3 .github/scripts/check_migration_files.py
- name: Coverage Tests
run: invoke dev.test --check --coverage --translations
- name: Upload raw coverage to artifacts