diff --git a/.github/workflows/dependabot-auto-merge.yml b/.github/workflows/dependabot-auto-merge.yml index f0c7e04..5c9d494 100644 --- a/.github/workflows/dependabot-auto-merge.yml +++ b/.github/workflows/dependabot-auto-merge.yml @@ -14,11 +14,27 @@ jobs: contents: write pull-requests: write steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + distribution: 'adopt' + java-version: '11' + + - name: Build Web Application + run: ./gradlew :composeApp:wasmJsBrowserDevelopmentRun + + - name: Build Desktop Application + run: ./gradlew :composeApp:run + - name: Automatically Merge Dependabot PRs + if: success() uses: pascalgn/automerge-action@v0.15.6 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MERGE_LABELS: "dependencies" MERGE_METHOD: "squash" MERGE_COMMIT_MESSAGE: "pull-request-title" - MERGE_FILTER_AUTHOR: "dependabot[bot]" + MERGE_FILTER_AUTHOR: "dependabot[bot]" \ No newline at end of file