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
feat(workflows): add comment posting for @agentready-dev agent
- Add step to post results back to issue/PR after Claude Code Action completes
- Ensure comments are attributed to @agentready-dev agent
- Update Claude Code Action comments to include @agentready-dev attribution
- Post status comment if Claude Code Action doesn't post automatically
// Update Claude's comment to add @agentready-dev attribution
255
+
const updatedBody = `🤖 **Response from @agentready-dev agent:**\n\n---\n\n${claudeComment.body}\n\n---\n*This response was generated by the @agentready-dev workflow.*`;
256
+
257
+
await github.rest.issues.updateComment({
258
+
owner: context.repo.owner,
259
+
repo: context.repo.repo,
260
+
comment_id: claudeComment.id,
261
+
body: updatedBody
262
+
});
263
+
} else {
264
+
// If no comment from Claude, post our own status comment
0 commit comments