user defined error msg for maximum upload of attachments #1413
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: Pull Request Builder | |
| env: | |
| MAVEN_VERSION: '3.6.3' | |
| on: | |
| pull_request: | |
| branches: [ "develop" ] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java-version: [ 21 ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Build | |
| uses: ./.github/actions/build | |
| with: | |
| java-version: ${{ matrix.java-version }} | |
| maven-version: ${{ env.MAVEN_VERSION }} |