Skip to content

Commit

Permalink
build: run automerge only after integration tests
Browse files Browse the repository at this point in the history
This should make sure, that no failing
PRs are merged automatically.
  • Loading branch information
adangel committed May 23, 2024
1 parent 10a9b72 commit bdb64ba
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,6 @@ jobs:
java: "[11, 17, 18]"
os: '["ubuntu-latest", "windows-latest"]'

dependabot-automerge:
needs: build-test
uses: liquibase/build-logic/.github/workflows/[email protected]
secrets: inherit

integration-tests:
name: Java ${{ matrix.java }}, MySQL ${{ matrix.mysql }}, MariaDB ${{ matrix.mariadb }}
runs-on: ubuntu-latest
Expand Down Expand Up @@ -58,3 +53,8 @@ jobs:
clean verify -Prun-its \
-Dmysql_image=mysql:${{ matrix.mysql }} \
-Dmariadb_image=mariadb:${{ matrix.mariadb }}
dependabot-automerge:
needs: integration-tests
uses: liquibase/build-logic/.github/workflows/[email protected]
secrets: inherit

0 comments on commit bdb64ba

Please sign in to comment.