Skip to content
This repository was archived by the owner on Sep 5, 2025. It is now read-only.

Commit 1f4a5ce

Browse files
committed
Fix backtick handling in issue-fix-mode.sh and bump version to 0.11.0
1 parent f49da5c commit 1f4a5ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "claude-code-github-action",
3-
"version": "0.6.0",
3+
"version": "0.11.0",
44
"description": "GitHub action for Claude Code Integration in PR comments, reviews, inline code suggestions, and issue-based fixes",
55
"main": "index.js",
66
"scripts": {

scripts/issue-fix-mode.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ git fetch origin $DEFAULT_BRANCH
192192
git checkout -b $FIX_BRANCH origin/$DEFAULT_BRANCH
193193

194194
# Create prompt for Claude
195-
CLAUDE_PROMPT=$(cat <<EOF
195+
CLAUDE_PROMPT=$(cat <<'EOF'
196196
You are Claude, an AI assistant tasked with fixing issues in a GitHub repository.
197197
198198
Issue #$ISSUE_NUMBER: $ISSUE_TITLE
@@ -204,7 +204,7 @@ EOF
204204

205205
# Add additional instructions if provided
206206
if [ -n "$FEEDBACK" ]; then
207-
CLAUDE_PROMPT+=$(cat <<EOF
207+
CLAUDE_PROMPT+=$(cat <<'EOF'
208208
209209
Additional Instructions from User Comment:
210210
$FEEDBACK
@@ -213,7 +213,7 @@ EOF
213213
fi
214214

215215
# Complete the prompt
216-
CLAUDE_PROMPT+=$(cat <<EOF
216+
CLAUDE_PROMPT+=$(cat <<'EOF'
217217
218218
Your task is to:
219219
1. Analyze the issue carefully to understand the problem

0 commit comments

Comments
 (0)