From 49dabf8549cb57533b1cadc3bbc08c6d0c6346c7 Mon Sep 17 00:00:00 2001 From: acx10 Date: Mon, 22 Dec 2025 11:42:08 -0700 Subject: [PATCH] Run flyway check on dev -> master merge --- .github/workflows/docker-build-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-build-publish.yml b/.github/workflows/docker-build-publish.yml index d6a84c78..8516bbd3 100644 --- a/.github/workflows/docker-build-publish.yml +++ b/.github/workflows/docker-build-publish.yml @@ -12,7 +12,7 @@ on: jobs: check-for-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 outputs: has_migrations: ${{ steps.check_migrations.outputs.has_migrations }}