You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(issue-auto-implement): iterate on PR when comment is on PR; avoid committing .pr_*; pass PR meta via outputs (#249)
- Treat issue_comment on a PR as iteration: resolve issue number from PR head/body, skip redirect, use existing branch
- Unstage .pr_title and .pr_body before commit; add to action .gitignore
- Pass PR title/body to Create PR step via step outputs instead of re-reading files
- Prompt: clarify that .commit_msg/.pr_title/.pr_body are workflow-only and must not be committed
Made-with: Cursor
Copy file name to clipboardExpand all lines: .github/actions/issue-auto-implement/assess/src/implement.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,7 @@ function buildClaudeCliPrompt(
72
72
` 1. ${metaDir}/.commit_msg — one line, conventional commit message (e.g. "fix: correct version comparison for beta").`,
73
73
` 2. ${metaDir}/.pr_title — one-line PR title.`,
74
74
` 3. ${metaDir}/.pr_body — markdown body: brief problem summary, then "How it was solved" or "Solution". Do NOT include "Closes #N" (it will be appended).`,
75
+
` These files are workflow-only inputs (consumed by the action to create the commit and PR). Do NOT add or commit them to the repository.`,
0 commit comments