Run flyway check on dev -> master merge

This commit is contained in:
acx10
2025-12-22 11:42:08 -07:00
parent b8fb843b7a
commit 49dabf8549

View File

@@ -12,7 +12,7 @@ on:
jobs: jobs:
check-for-migrations: check-for-migrations:
name: Check for DB Migrations name: Check for DB Migrations
if: github.event_name == 'pull_request' && ((github.base_ref == 'master' && github.head_ref == 'develop') || github.base_ref == 'develop') if: github.event_name == 'pull_request' && (github.base_ref == 'master' || github.base_ref == 'develop')
runs-on: ubuntu-latest runs-on: ubuntu-latest
outputs: outputs:
has_migrations: ${{ steps.check_migrations.outputs.has_migrations }} has_migrations: ${{ steps.check_migrations.outputs.has_migrations }}