From a88f287faace3c7d3e0658b66927f7c1d5d7c7b7 Mon Sep 17 00:00:00 2001 From: Arun Sunny Date: Fri, 26 Jun 2026 15:11:49 +0530 Subject: [PATCH 1/2] fix: use simple tag format (v0.9.0) for release-please Co-authored-by: Cursor --- release-please-config.json | 1 + 1 file changed, 1 insertion(+) diff --git a/release-please-config.json b/release-please-config.json index 0b583d3e..a36aeaf0 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -3,6 +3,7 @@ "packages": { ".": { "release-type": "node", + "include-component-in-tag": false, "bump-minor-pre-major": true, "bump-patch-for-minor-pre-major": true, "extra-files": [ From 31ffddf718362ffad0b501928657b9958717ac87 Mon Sep 17 00:00:00 2001 From: Arun Sunny Date: Fri, 26 Jun 2026 15:34:27 +0530 Subject: [PATCH 2/2] fix: exempt release-please from branch name check and prettier Co-authored-by: Cursor --- .github/workflows/commit-lint.yml | 4 ++++ .prettierignore | 1 + 2 files changed, 5 insertions(+) diff --git a/.github/workflows/commit-lint.yml b/.github/workflows/commit-lint.yml index 1a5db695..dabfaf56 100644 --- a/.github/workflows/commit-lint.yml +++ b/.github/workflows/commit-lint.yml @@ -12,6 +12,10 @@ jobs: - name: Validate branch name run: | BRANCH="${{ github.head_ref }}" + if [[ "$BRANCH" == release-please--* ]]; then + echo "✅ Skipping branch name check for release-please branch." + exit 0 + fi PATTERN="^(feat|fix|docs|refactor|chore|test|perf)/.+" if [[ ! "$BRANCH" =~ $PATTERN ]]; then echo "❌ Branch name '$BRANCH' does not follow the convention." diff --git a/.prettierignore b/.prettierignore index 9244f52b..e4daf7dc 100644 --- a/.prettierignore +++ b/.prettierignore @@ -7,3 +7,4 @@ runners/mcp/dist/ runners/extension/catalog.json .opfor/ *.json +CHANGELOG.md