From 95ef11147702156abd9a1bdb2cbf62cf470d0515 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 27 Apr 2026 10:12:59 +0000 Subject: [PATCH 1/3] chore(release): bump to 3.2.5-SNAPSHOT [skip ci] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ed72c84..fcb57e4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.utplsql utplsql-java-api - 3.2.4 + 3.2.5-SNAPSHOT utPLSQL Java API Java API for running Unit Tests with utPLSQL v3+. From 884389c3449d759dd3c600506b2dfec23b254b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacek=20G=C4=99bal?= Date: Mon, 27 Apr 2026 14:24:27 +0300 Subject: [PATCH 2/3] Update build process to trigger build on two repositories. --- .github/workflows/build.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3c0752a..8449e97 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,14 +82,17 @@ jobs: id: project_version run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT - - name: Trigger utPLSQL-cli snapshot build + - name: Trigger snapshot builds if: github.event_name != 'pull_request' - uses: peter-evans/repository-dispatch@v3 - with: - token: ${{ secrets.CLI_REPO_TOKEN }} - repository: utPLSQL/utPLSQL-cli - event-type: utPLSQL-java-api-build - client-payload: '{"api_version": "${{ steps.project_version.outputs.version }}"}' + env: + GH_TOKEN: ${{ secrets.CLI_REPO_TOKEN }} + run: | + for repo in utPLSQL/utPLSQL-cli utPLSQL/utPLSQL-maven-plugin; do + gh api repos/$repo/dispatches \ + --method POST \ + --field event_type=utPLSQL-java-api-build \ + --field client_payload='{"api_version":"${{ steps.project_version.outputs.version }}"}' + done - name: Publish unit test results uses: EnricoMi/publish-unit-test-result-action@v2 From 86109e3ca748847141f72883d9e6b51049e06ada Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jacek=20G=C4=99bal?= Date: Mon, 27 Apr 2026 14:33:26 +0300 Subject: [PATCH 3/3] Update build process to trigger build on two repositories. --- .github/workflows/build.yml | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8449e97..7b3f71b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -82,17 +82,23 @@ jobs: id: project_version run: echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout)" >> $GITHUB_OUTPUT - - name: Trigger snapshot builds + - name: Trigger utPLSQL-cli snapshot build if: github.event_name != 'pull_request' - env: - GH_TOKEN: ${{ secrets.CLI_REPO_TOKEN }} - run: | - for repo in utPLSQL/utPLSQL-cli utPLSQL/utPLSQL-maven-plugin; do - gh api repos/$repo/dispatches \ - --method POST \ - --field event_type=utPLSQL-java-api-build \ - --field client_payload='{"api_version":"${{ steps.project_version.outputs.version }}"}' - done + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.CLI_REPO_TOKEN }} + repository: utPLSQL/utPLSQL-cli + event-type: utPLSQL-java-api-build + client-payload: '{"api_version": "${{ steps.project_version.outputs.version }}"}' + + - name: Trigger utPLSQL-maven-plugin snapshot build + if: github.event_name != 'pull_request' + uses: peter-evans/repository-dispatch@v3 + with: + token: ${{ secrets.CLI_REPO_TOKEN }} + repository: utPLSQL/utPLSQL-maven-plugin + event-type: utPLSQL-java-api-build + client-payload: '{"api_version": "${{ steps.project_version.outputs.version }}"}' - name: Publish unit test results uses: EnricoMi/publish-unit-test-result-action@v2