This repository was archived by the owner on Feb 21, 2026. It is now read-only.
chore(ci): bump webiny/action-conventional-commits #959
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI workflow | ||
| on: [push, pull_request] | ||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| with: | ||
| submodules: "recursive" | ||
| - name: Set up JDK 21 | ||
| uses: actions/setup-java@v5 | ||
| with: | ||
| java-version: "21" | ||
| distribution: "temurin" | ||
| cache: maven | ||
| - name: Build with Maven | ||
| run: ./mvnw -DskipTests package | ||
| automerge: | ||
| needs: [build] | ||
| if: ${{ github.event_name == 'pull_request' }} | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| pull-requests: write | ||
| contents: write | ||
| steps: | ||
| - uses: fastify/github-action-merge-dependabot@v3 | ||
| with: | ||
| merge-comment: "Merged automatically by Planet CI." | ||
| skip-commit-verification: true | ||
| skip-verification: true | ||
| codeql-workflow: | ||
|
Check failure on line 37 in .github/workflows/ci.yml
|
||
| needs: [build] | ||
| uses: ./.github/workflows/codeql.yml | ||
| secrets: inherit | ||
| containers: | ||
| needs: [codeql-workflow] | ||
| uses: ./.github/workflows/containers.yml | ||
| secrets: inherit | ||