Skip to content

Commit 769c2a7

Browse files
authored
Update agent-docusarus-dev.yml
1 parent 1494f9a commit 769c2a7

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

.github/workflows/agent-docusarus-dev.yml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -67,23 +67,23 @@ jobs:
6767
if: steps.check-files.outputs.skip_review != 'true'
6868
run: |
6969
cat > /tmp/review-prompt.txt << 'EOF'
70-
Review this pull request focusing exclusively on Docusaurus infrastructure and configuration files.
70+
Review this pull request focusing exclusively on Docusaurus infrastructure and configuration files.
7171
72-
Analyze changes to:
73-
- docusaurus.config.js (site configuration, plugins, themes)
74-
- sidebars.js (navigation structure)
75-
- package.json (dependencies, scripts)
76-
- Build configuration files
77-
- Source code in src/ directory
78-
- GitHub Actions workflows
72+
Analyze changes to:
73+
- docusaurus.config.js (site configuration, plugins, themes)
74+
- sidebars.js (navigation structure)
75+
- package.json (dependencies, scripts)
76+
- Build configuration files
77+
- Source code in src/ directory
78+
- GitHub Actions workflows
7979
80-
For each issue found, provide:
81-
1. Clear explanation of the problem
82-
2. Specific code suggestion with reasoning
83-
3. Potential impact on the documentation site
80+
For each issue found, provide:
81+
1. Clear explanation of the problem
82+
2. Specific code suggestion with reasoning
83+
3. Potential impact on the documentation site
8484
85-
Ignore all .md and .mdx files - focus only on the technical infrastructure.
86-
EOF
85+
Ignore all .md and .mdx files - focus only on the technical infrastructure.
86+
EOF
8787
8888
- name: Read system prompt for append
8989
if: steps.check-files.outputs.skip_review != 'true'
@@ -107,7 +107,7 @@ EOF
107107
max_turns: "20"
108108
model: "claude-sonnet-4-20250514"
109109

110-
- name: Post review summary (bash)
110+
- name: Post review summary (bash)
111111
if: steps.claude-review.conclusion == 'success'
112112
env:
113113
EXECUTION_FILE: ${{ steps.claude-review.outputs.execution_file }}
@@ -137,20 +137,20 @@ EOF
137137
138138
# Create comment file with proper escaping
139139
cat > /tmp/comment.md << 'HEADER'
140-
## 🤖 Claude Docusaurus Review
140+
## 🤖 Claude Docusaurus Review
141141
142-
HEADER
142+
HEADER
143143
144144
# Append the review content
145145
echo "$REVIEW_CONTENT" >> /tmp/comment.md
146146
147147
# Add footer
148148
cat >> /tmp/comment.md << 'FOOTER'
149149
150-
---
150+
---
151151
152-
<sub>Automated review by Claude Code</sub>
153-
FOOTER
152+
<sub>Automated review by Claude Code</sub>
153+
FOOTER
154154
155155
# Post comment using GitHub API
156156
jq -n --arg body "$(cat /tmp/comment.md)" '{body: $body}' | \

0 commit comments

Comments
 (0)