From f29f4231b25748b3f5d29d1ad2a2d91d5af8af11 Mon Sep 17 00:00:00 2001 From: bitwiseman <1958953+bitwiseman@users.noreply.github.com> Date: Thu, 13 Feb 2025 07:45:22 +0000 Subject: [PATCH 1/7] Prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 594083c3b8..c9a50487fe 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 org.kohsuke github-api - 1.327 + 1.328-SNAPSHOT GitHub API for Java https://github-api.kohsuke.org/ GitHub API for Java From bfade2274aa132d6c48f1a769e6675e7f36d1bf7 Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Wed, 23 Jul 2025 16:29:17 -0700 Subject: [PATCH 2/7] Chore(deps): Bump org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0 (#2114) Bumps org.apache.commons:commons-lang3 from 3.17.0 to 3.18.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-lang3 dependency-version: 3.18.0 dependency-type: direct:production --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c9a50487fe..5a9511b313 100644 --- a/pom.xml +++ b/pom.xml @@ -486,7 +486,7 @@ org.apache.commons commons-lang3 - 3.17.0 + 3.18.0 com.tngtech.archunit From a9a5f73160e616b6efd99c56c0c59fd1ce9a1a5d Mon Sep 17 00:00:00 2001 From: bitwiseman <1958953+bitwiseman@users.noreply.github.com> Date: Wed, 23 Jul 2025 23:44:05 +0000 Subject: [PATCH 3/7] Prepare release (bitwiseman): github-api-1.328 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5a9511b313..58c35fb8c1 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 org.kohsuke github-api - 1.328-SNAPSHOT + 1.328 GitHub API for Java https://github-api.kohsuke.org/ GitHub API for Java From 9033e4bea871508cc514fc9cdd404a7bfbb61799 Mon Sep 17 00:00:00 2001 From: bitwiseman <1958953+bitwiseman@users.noreply.github.com> Date: Wed, 23 Jul 2025 23:44:09 +0000 Subject: [PATCH 4/7] Prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 58c35fb8c1..276fb917cb 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 org.kohsuke github-api - 1.328 + 1.329-SNAPSHOT GitHub API for Java https://github-api.kohsuke.org/ GitHub API for Java From 36c57655176099066f7d336edfc38f48f8b91c77 Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Tue, 29 Jul 2025 11:29:45 -0700 Subject: [PATCH 5/7] Update ossrh sonatype staging url ossrh sunsetted as of June 30, 2025: https://central.sonatype.org/pages/ossrh-eol/ --- pom.xml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 276fb917cb..1f4207376e 100644 --- a/pom.xml +++ b/pom.xml @@ -18,12 +18,12 @@ sonatype-nexus-snapshots Sonatype Nexus Snapshots - https://s01.oss.sonatype.org/content/repositories/snapshots/ + ${nexus.serverUrl}/content/repositories/snapshots/ sonatype-nexus-staging Nexus Release Repository - https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/ + ${nexus.serverUrl}/service/local/staging/deploy/maven2/ github-pages @@ -49,6 +49,9 @@ + + + https://ossrh-staging-api.central.sonatype.com From 231226059fd3b4512228049d118bf6c97d42fb6a Mon Sep 17 00:00:00 2001 From: Liam Newman Date: Tue, 29 Jul 2025 10:56:27 -0700 Subject: [PATCH 6/7] Update release tag workflow to support 1.x and 2.x --- .../workflows/create_release_tag_and_pr.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/.github/workflows/create_release_tag_and_pr.yml b/.github/workflows/create_release_tag_and_pr.yml index 16a59223f5..a959995177 100644 --- a/.github/workflows/create_release_tag_and_pr.yml +++ b/.github/workflows/create_release_tag_and_pr.yml @@ -21,11 +21,13 @@ jobs: distribution: 'temurin' cache: 'maven' - - name: Reset staging/main + - name: Reset staging id: staging run: | - git checkout -B staging/main - git push --set-upstream -f origin staging/main + git checkout -B staging/$GITHUB_REF_NAME + git push --set-upstream -f origin staging/$GITHUB_REF_NAME + env: + GITHUB_REF_NAME: ${{ github.ref_name }} - name: Set Release Version id: release @@ -37,7 +39,7 @@ jobs: with: commit_message: "Prepare release (${{ github.actor }}): github-api-${{ steps.release.outputs.version }}" tagging_message: 'github-api-${{ steps.release.outputs.version }}' - branch: staging/main + branch: staging/${{ github.ref_name }} - name: Increment Snapshot Version run: | @@ -46,12 +48,12 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "Prepare for next development iteration" - branch: staging/main + branch: staging/${{ github.ref_name }} - - name: pull-request to main + - name: Create pull-request uses: repo-sync/pull-request@v2 with: pr_title: "Prepare release (${{ github.actor }}): github-api-${{ steps.release.outputs.version }}" - source_branch: "staging/main" - destination_branch: "main" + source_branch: "staging/${{ github.ref_name }}" + destination_branch: "${{ github.ref_name }}" github_token: ${{ secrets.GITHUB_TOKEN }} From b33c8ed7cb450224182f8b01a25e2631758b4dff Mon Sep 17 00:00:00 2001 From: bitwiseman <1958953+bitwiseman@users.noreply.github.com> Date: Tue, 29 Jul 2025 18:45:01 +0000 Subject: [PATCH 7/7] Prepare release (bitwiseman): github-api-1.329 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1f4207376e..0799d1e66a 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 org.kohsuke github-api - 1.329-SNAPSHOT + 1.329 GitHub API for Java https://github-api.kohsuke.org/ GitHub API for Java