Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion .archon/workflows/dev-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,21 @@ nodes:
)"
```

Output the PR URL.
6. MANDATORY — after creating the PR, explicitly close ALL issues
(primary + grouped). Do NOT rely on GitHub's auto-close from
`Closes #N` — it only works when the PR is merged into the
DEFAULT branch, which may not be hotfix.
For EACH issue number:
```bash
gh issue close <N> --comment "Resolved in PR #<PR-number>"
```
Verify all are closed:
```bash
gh issue view <N> --json state --jq '.state'
# Should say CLOSED for every issue
```

Output the PR URL and list of closed issues.

# ═══════════════════════════════════════════════════════════════
# Step 13: Scan for already-fixed issues
Expand Down
Loading