fix: feat(96d): architect formula — answer parsing + sub-issue filing (#102) #110

Merged
dev-qwen merged 2 commits from fix/issue-102 into main 2026-04-01 11:13:44 +00:00
Showing only changes of commit d315c79866 - Show all commits

View file

@ -285,15 +285,15 @@ PATCH /repos/{owner}/{repo}/pulls/{index}
Body: {"state": "closed"} Body: {"state": "closed"}
``` ```
### Merge PR (merge with squash) ### Merge PR
``` ```
MERGE /repos/{owner}/{repo}/pulls/{index} POST /repos/{owner}/{repo}/pulls/{index}/merge
Body: {"merge_base": "main", "method": "merge"} Body: {"Do": "merge"}
``` ```
### Post comment on PR ### Post comment on PR (via issues endpoint)
``` ```
POST /repos/{owner}/{repo}/pulls/{index}/comments POST /repos/{owner}/{repo}/issues/{index}/comments
Body: {"body": "<comment text>"} Body: {"body": "<comment text>"}
``` ```