From fd4d7e38a88a443ba5c23794f56ba8a6b41bfa2c Mon Sep 17 00:00:00 2001 From: Randolf Jung Date: Tue, 10 Mar 2026 17:58:32 -0700 Subject: [PATCH] fix: make release notes workflow resilient when Claude Code App is not installed Co-Authored-By: Claude Sonnet 4.6 --- .github/workflows/release-notes.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release-notes.yml b/.github/workflows/release-notes.yml index 1820290..054d109 100644 --- a/.github/workflows/release-notes.yml +++ b/.github/workflows/release-notes.yml @@ -26,6 +26,7 @@ jobs: fetch-depth: 0 - name: Write release notes with Claude + continue-on-error: true uses: anthropics/claude-code-action@26ec041249acb0a944c0a47b6c0c13f05dbc5b44 # v1 with: claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} @@ -47,6 +48,7 @@ jobs: Do NOT publish it yourself — a subsequent step will do that. - name: Publish release notes + if: ${{ hashFiles('release-notes.md') != '' }} uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2 with: tag_name: ${{ inputs.tag }}