Skip to content

Commit

Permalink
build: capturing new migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Oct 30, 2023
1 parent 450df4b commit a9d0efc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/capture_new_migrations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Verify executed migrations on master.
run: |
mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select app,name from django_migrations; ;" edxapp;
mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select count(*) from django_migrations;" edxapp;
- name: Checkout branch repo
uses: actions/checkout@v2
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
- name: Verify executed migrations on branch.
run: |
mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select app,name from django_migrations; ;" edxapp;
mysql -h 127.0.0.1 -uedxapp001 -ppassword -e "select count(*) from django_migrations;" edxapp;
# This job aggregates test results. It's the required check for branch protection.
Expand Down

0 comments on commit a9d0efc

Please sign in to comment.