Skip to content

Commit 890ca9c

Browse files
committed
Improve: Clarify file creation requirements in prompt with bash examples
1 parent d4cb814 commit 890ca9c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/agentready-dev-issue-pr.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,11 +163,18 @@ jobs:
163163
- If it makes sense to create a draft PR: Write "create_pr" (without quotes) to .github/agentready-dev-logs/analysis-decision.txt
164164
- If it doesn't make sense: Write "provide_feedback" (without quotes) to .github/agentready-dev-logs/analysis-decision.txt
165165
166-
IMPORTANT: Write ONLY the value (create_pr or provide_feedback), NOT "OUTPUT=value"
166+
IMPORTANT:
167+
- Write ONLY the value (create_pr or provide_feedback), NOT "OUTPUT=value"
168+
- You MUST create these files using bash commands. Example:
169+
echo "create_pr" > .github/agentready-dev-logs/analysis-decision.txt
170+
echo "Your reasoning here" > .github/agentready-dev-logs/analysis-reasoning.txt
171+
echo "branch-name" > .github/agentready-dev-logs/analysis-branch.txt
167172
168173
Write your reasoning (2-3 lines max) to .github/agentready-dev-logs/analysis-reasoning.txt
169174
Write a short branch name suggestion (e.g., "add-feature-x" or "fix-bug-y") to .github/agentready-dev-logs/analysis-branch.txt
170175
176+
CRITICAL: You must create all three files (.github/agentready-dev-logs/analysis-decision.txt, analysis-reasoning.txt, and analysis-branch.txt) using bash echo commands.
177+
171178
Do NOT post any comment yet - you will self-review your analysis first.
172179
173180
- name: Extract analysis decision

0 commit comments

Comments
 (0)