Compare commits

..

1 commit

Author SHA1 Message Date
Agent
7134752525 fix: feat(96c): architect formula — sprint PR creation with questions (#101)
All checks were successful
ci/woodpecker/push/ci Pipeline was successful
ci/woodpecker/pr/ci Pipeline was successful
2026-04-01 10:50:06 +00:00

View file

@ -182,8 +182,8 @@ All operations use the Forgejo API with `Authorization: token ${FORGE_TOKEN}` he
### Create branch
```
POST /repos/{owner}/{repo}/git/branches
Body: {"name": "architect/<sprint-slug>", "old_ref": "refs/heads/main", "new_ref": "<commit-sha>"}
POST /repos/{owner}/{repo}/branches
Body: {"new_branch_name": "architect/<sprint-slug>", "old_branch_name": "main"}
```
### Create/update file
@ -200,7 +200,7 @@ Body: {"title": "architect: <sprint summary>", "body": "<pitch-content>", "head"
### Close PR
```
POST /repos/{owner}/{repo}/pulls/{index}/pull
PATCH /repos/{owner}/{repo}/pulls/{index}
Body: {"state": "closed"}
```