From a0378aebd73f131f61e235b9142a8dcabbc2e2af Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Wed, 10 Dec 2025 10:59:03 +0000 Subject: [PATCH 1/2] fix: include mandatory 'body' parameter to 'gh pr create' --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 49e4544..6dec8c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -103,8 +103,10 @@ jobs: - name: Create Pull Request for release + next version run: > gh pr create - --title "build: release ${{ steps.bump.outputs.version }} [skip ci]" - --base main --head "release/v${{ steps.bump.outputs.version }}" + --title "build: release ${{ steps.bump.outputs.version }}" + --body "build: release ${{ steps.bump.outputs.version }}" + --base main + --head "release/v${{ steps.bump.outputs.version }}" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 61686ca3279e6aaa00bcf267d0a5b9744aa25c1e Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Wed, 10 Dec 2025 11:28:28 +0000 Subject: [PATCH 2/2] fix: run publish when release published --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4559515..a6cb904 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -9,6 +9,9 @@ on: - main tags: - 'v*.*.*' + release: + types: + - published permissions: contents: write