chore: add script to generate release notes based on commit history (… #151
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - 'gapic-generator-java-bom/**' | |
| - 'gapic-generator-java-pom-parent/**' | |
| - 'java-shared-dependencies/**' | |
| name: sdk-platform-java shared-dependencies version check | |
| env: | |
| BUILD_SUBDIR: sdk-platform-java | |
| jobs: | |
| filter: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| library: ${{ steps.filter.outputs.library }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4.0.1 | |
| id: filter | |
| with: | |
| filters: | | |
| library: | |
| - 'sdk-platform-java/**' | |
| upper-bound-check: | |
| needs: filter | |
| if: needs.filter.outputs.library == 'true' && github.repository_owner == 'googleapis' | |
| name: Shared Dependencies BOM upper-bound check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - run: java -version | |
| - name: Install maven modules | |
| run: | | |
| mvn install -B -ntp -DskipTests -Pquick-build | |
| - name: Check the BOM content satisfies the upper-bound-check test case | |
| run: mvn -B -V -ntp verify -Pquick-build | |
| working-directory: sdk-plaform-java/java-shared-dependencies/upper-bound-check |