feat(skills): push-pr marks referenced tickets as review

Step 7 scans commit messages for #NNN ticket refs and transitions
in_progress tickets to review status. Only in_progress → review;
other statuses are left alone.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-18 11:57:39 +01:00
co-authored by Claude Opus 4.6
parent 9728eb5d1d
commit 5f3514b3c4
+19
View File
@@ -103,6 +103,25 @@ tea pr create \
Report PR URL when done.
### 7. Update ticket status to review
Scan all commit messages in the PR for ticket references (`#NNN`):
```bash
git log --oneline main..<branch>
```
Extract ticket IDs from `#NNN` patterns. For each ticket that is
currently `in_progress`, update it to `review`:
```bash
db/connectors/ticket status <id> review
```
Report which tickets were moved to review. Skip tickets that are
already `done`, `review`, `cancelled`, or `backlog` (only transition
`in_progress``review`).
## Arguments
If the user passes arguments (e.g., `/push-pr "my title"`), use them as the