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
17 changes: 17 additions & 0 deletions docs/commit-conventions.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ not found in the workspace root.

```
Closes #<issue-number>
Closes #<issue-number>

## Motivation
Why this work was needed. What problem it solves for users.
Expand Down Expand Up @@ -109,6 +110,22 @@ actionable -- not just "this is hard" but "do X instead of Y".
- [ ] verification steps
```

### Closing issues

Use one `Closes` keyword per issue, each on its own line. Do NOT
comma-separate multiple issues on one line — GitHub may silently
skip some of them.

```
# Good
Closes #39
Closes #40
Closes #41

# Bad — GitHub may not close all of them
Closes #39, #40, #41
```

### Why this format matters
The "Challenges and Decisions" section captures the debugging journey
that would otherwise be lost when commits are squashed. The
Expand Down
Loading