We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d29c44b commit b363837Copy full SHA for b363837
1 file changed
.github/workflows/claude-org-wide.yml
@@ -87,11 +87,9 @@ jobs:
87
COMMENT_BODY: ${{ github.event.comment.body }}
88
run: |
89
REQUEST=$(echo "$COMMENT_BODY" | sed 's|@phpstan-bot||g' | sed 's/^[[:space:]]*//')
90
- {
91
- echo "request<<EOF"
92
- echo "$REQUEST"
93
- echo "EOF"
94
- } >> "$GITHUB_OUTPUT"
+ echo "request<<EOF" >> "$GITHUB_OUTPUT"
+ echo "$REQUEST" >> "$GITHUB_OUTPUT"
+ echo "EOF" >> "$GITHUB_OUTPUT"
95
96
- name: "Run Claude Code on repository"
97
uses: anthropics/claude-code-action@v1
0 commit comments