From f344b5aa910730d9f5faf496ed7dc84fb1d686b4 Mon Sep 17 00:00:00 2001 From: Blake Petetan <36917+petetan@users.noreply.github.com> Date: Mon, 11 Aug 2025 16:06:49 -0700 Subject: [PATCH 1/2] fix: update action references from ai-release-tool to releasebot - Updated all GitHub Action usage examples in README.md to use synctree/releasebot@v1 - Updated package.json name from 'ai-release-tool' to 'releasebot' - Ensures consistency with the public repository name --- README.md | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 723e03c..142aa0f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: synctree/ai-release-tool@v1 + - uses: synctree/releasebot@v1 with: feature-branch: ${{ inputs.feature_branch }} main-branch: 'main' @@ -75,7 +75,7 @@ jobs: with: fetch-depth: 0 # Required for proper git diff analysis - - uses: synctree/ai-release-tool@v1 + - uses: synctree/releasebot@v1 with: feature-branch: ${{ inputs.feature_branch }} main-branch: 'main' @@ -109,7 +109,7 @@ jobs: with: fetch-depth: 0 - - uses: synctree/ai-release-tool@v1 + - uses: synctree/releasebot@v1 id: analysis with: feature-branch: ${{ github.head_ref }} @@ -158,7 +158,7 @@ jobs: with: fetch-depth: 0 - - uses: synctree/ai-release-tool@v1 + - uses: synctree/releasebot@v1 with: feature-branch: 'develop' main-branch: 'main' @@ -173,7 +173,7 @@ jobs: ```yaml # Release from develop branch -- uses: synctree/ai-release-tool@v1 +- uses: synctree/releasebot@v1 with: feature-branch: 'develop' # All integrated features main-branch: 'main' # Last production release @@ -184,7 +184,7 @@ jobs: ```yaml # Release specific feature -- uses: synctree/ai-release-tool@v1 +- uses: synctree/releasebot@v1 with: feature-branch: 'feature/user-auth' # Specific feature main-branch: 'main' # Production baseline @@ -195,7 +195,7 @@ jobs: ```yaml # Release from main/trunk -- uses: synctree/ai-release-tool@v1 +- uses: synctree/releasebot@v1 with: feature-branch: 'main' # Current trunk state main-branch: 'release/v1.0' # Last release tag diff --git a/package.json b/package.json index eb54b08..6e2f58c 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "ai-release-tool", + "name": "releasebot", "version": "1.0.0", "description": "AI-powered release automation tool for GitHub Actions", "main": "dist/index.js", From 4627be7774d9b076218d6ed2f2ef15137eba9a7a Mon Sep 17 00:00:00 2001 From: Blake Petetan <36917+petetan@users.noreply.github.com> Date: Mon, 11 Aug 2025 16:15:03 -0700 Subject: [PATCH 2/2] fix: add missing packages field to pnpm-workspace.yaml - PNPM requires packages field in workspace configuration - Fixes CI build failure: ERR_PNPM_INVALID_WORKSPACE_CONFIGURATION --- pnpm-workspace.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml index cb8238f..ad869f7 100644 --- a/pnpm-workspace.yaml +++ b/pnpm-workspace.yaml @@ -1,3 +1,6 @@ +packages: + - "." + onlyBuiltDependencies: - esbuild - unrs-resolver