From 48dd1d66f15ff759dcf65333ab34d7b2564ce552 Mon Sep 17 00:00:00 2001 From: Sjoerd Beentjes <11621275+sjoerdbeentjes@users.noreply.github.com> Date: Fri, 4 Oct 2024 16:19:01 +0200 Subject: [PATCH] Change workflow trigger to push on main branch (#137) * Change workflow trigger to push on main branch * Remove condition on migrations for merged PRs --- .github/workflows/main-migrations.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/main-migrations.yaml b/.github/workflows/main-migrations.yaml index 692f76d8..0ed92011 100644 --- a/.github/workflows/main-migrations.yaml +++ b/.github/workflows/main-migrations.yaml @@ -1,15 +1,12 @@ name: Deploy to production on: - pull_request: - types: [closed] push: branches: - main jobs: apply-main-migrations: - if: ${{ github.event.pull_request.merged == true }} runs-on: ubuntu-latest steps: - name: Checkout repository